12 lines
305 B
YAML
12 lines
305 B
YAML
|
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
|