16 lines
298 B
YAML
16 lines
298 B
YAML
services:
|
|
db:
|
|
image: postgres:17
|
|
restart: unless-stopped
|
|
environment:
|
|
POSTGRES_USER: opencut
|
|
POSTGRES_PASSWORD: opencutthegoat
|
|
POSTGRES_DB: opencut
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data
|
|
ports:
|
|
- "5432:5432"
|
|
|
|
volumes:
|
|
postgres_data:
|