This repository has been archived on 2025-06-18. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
casino/compose.yml
Renovate Bot 156379c12c
All checks were successful
CI / Get Changed Files (pull_request) Successful in 47s
CI / Checkstyle Main (pull_request) Has been skipped
CI / eslint (pull_request) Has been skipped
CI / oxlint (pull_request) Has been skipped
CI / prettier (pull_request) Has been skipped
CI / test-build (pull_request) Has been skipped
CI / Docker frontend validation (pull_request) Successful in 2m27s
CI / Docker backend validation (pull_request) Successful in 3m15s
chore(deps): update postgres docker tag to v17.5
2025-05-08 21:02:03 +00:00

18 lines
No EOL
375 B
YAML

volumes:
postgres_data:
services:
db:
image: postgres:17.5
container_name: casino-db
restart: unless-stopped
volumes:
- postgres_data:/var/lib/postgresql/data
environment:
POSTGRES_DB: postgresdb
POSTGRES_USER: postgres_user
POSTGRES_PASSWORD: postgres_pass
healthcheck:
test: "exit 0"
ports:
- "5432:5432"