survey/docker-compose.yml
Renovate Bot eb98fea3b0
All checks were successful
ci/woodpecker/pr/woodpecker Pipeline was successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/pull_request_closed/woodpecker Pipeline was successful
chore(deps): update postgres docker tag to v16
2024-06-07 22:05:19 +00:00

22 lines
482 B
YAML

version: '3.9'
services:
mcaptchas-survey:
build: .
ports:
- 7000:7000
environment:
DATABASE_URL: postgres://postgres:password@postgres:5432/postgres # set password at placeholder
RUST_LOG: debug
postgres:
image: postgres:16.3
volumes:
- mcaptcha-survey-data:/var/lib/postgresql/
environment:
POSTGRES_PASSWORD: password # change password
PGDATA: /var/lib/postgresql/data/mcaptcha/
volumes:
mcaptcha-survey-data: