mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:31 +02:00
12 lines
225 B
YAML
12 lines
225 B
YAML
postgres:
|
|
image: postgres:alpine
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- ./data:/var/lib/postgresql/data
|
|
environment:
|
|
- POSTGRES_USER=root
|
|
- POSTGRES_PASSWORD=root
|
|
- POSTGRES_DB=postgres
|
|
restart: always
|