ff-handbook/webpage/code/postgres-compose.yml

12 lines
305 B
YAML
Raw Normal View History

2025-02-04 12:41:43 +01:00
ff-db:
image: postgres:<version (bsp 16)>
container_name: ff_db
restart: unless-stopped
ports:
- "5432:5432"
environment:
- POSTGRES_DB=<database name>
- POSTGRES_USER=<username>
- POSTGRES_PASSWORD=<user password>
volumes:
- <volume|local path>:/var/lib/postgresql/data