16 lines
292 B
YAML
16 lines
292 B
YAML
|
|
services:
|
||
|
|
postgres:
|
||
|
|
image: postgres:16
|
||
|
|
restart: unless-stopped
|
||
|
|
environment:
|
||
|
|
POSTGRES_DB: orchestrator_dev
|
||
|
|
POSTGRES_USER: ots
|
||
|
|
POSTGRES_PASSWORD: devpassword
|
||
|
|
ports:
|
||
|
|
- "5432:5432"
|
||
|
|
volumes:
|
||
|
|
- pgdata:/var/lib/postgresql/data
|
||
|
|
|
||
|
|
volumes:
|
||
|
|
pgdata:
|