mirror of
https://github.com/Kugelschieber/docker.git
synced 2026-01-18 06:40:26 +00:00
14 lines
269 B
YAML
14 lines
269 B
YAML
version: '3'
|
|
|
|
services:
|
|
postgres:
|
|
image: postgres:13
|
|
container_name: postgres
|
|
restart: always
|
|
ports:
|
|
- 5432:5432
|
|
environment:
|
|
- POSTGRES_PASSWORD=postgres
|
|
volumes:
|
|
- /home/marvin/docker/postgres/data:/var/lib/postgresql/data
|