12 lines
288 B
YAML
12 lines
288 B
YAML
services:
|
|
db:
|
|
image: ghcr.io/alikia2x/cvsa/pg:latest
|
|
container_name: cvsa-pg
|
|
command: postgres -c config_file=/etc/postgresql/postgresql.conf
|
|
env_file:
|
|
- .env.pg
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- cvsa_data:/var/lib/postgresql/
|
|
restart: always |