13 lines
241 B
YAML
13 lines
241 B
YAML
|
services:
|
||
|
database:
|
||
|
image: postgres:16
|
||
|
container_name: draincloud-core-db
|
||
|
env_file:
|
||
|
- ./.db.env
|
||
|
volumes:
|
||
|
- draincore-data:/var/lib/postgresql/data
|
||
|
ports:
|
||
|
- 5432:5432
|
||
|
|
||
|
volumes:
|
||
|
draincore-data: {}
|