Volumes
Unbenannte Volumes
docker run -d \
-p 3306:5432 \
--name my-postgres \
-e POSTGRES_PASSWORD=secret \
postgresBenannte Volumes
docker run -d \
-p 3306:5432 \
--name my-postgres \
-e POSTGRES_PASSWORD=secret \
-v my-postgres-data:/var/lib/postgresql/data \
postgresPfad des Volumes anzeigen
Last updated