PostgreSQL with Docker: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 16: Line 16:
docker run posgres
docker run posgres
</syntaxhighlight>
</syntaxhighlight>
The command will implicitly create a [[Docker_Storage_Concepts#Local_Volume_Driver|local]] [[Docker_Storage_Concepts#Anonymous_Volume|anonymous]] volume that will linger around after the container stops.

Revision as of 16:46, 18 October 2018

Internal

Overview

  • simplest image - data is lost
  • external volume
  • port mapping.

Running a Transient Instance

docker run posgres

The command will implicitly create a local anonymous volume that will linger around after the container stops.