19 lines
261 B
YAML
19 lines
261 B
YAML
services:
|
|
db:
|
|
image: postgres:15.3-alpine
|
|
restart: unless-stopped
|
|
ports:
|
|
- 5433:5432
|
|
networks:
|
|
- db
|
|
volumes:
|
|
- postgres-data:/var/lib/postgresql/data
|
|
env_file:
|
|
- .env
|
|
|
|
volumes:
|
|
postgres-data:
|
|
|
|
networks:
|
|
db:
|