This repository has been archived on 2024-12-29. You can view files and clone it, but cannot push or open issues or pull requests.
flucky/docker-compose.yml
CSRBot 67670d4f3b
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
chore(deps): update dependency postgres
2022-11-01 23:01:54 +01:00

15 lines
292 B
YAML

version: '3'
services:
flucky-db:
container_name: postgres
environment:
- PGTZ=Europe/Berlin
- POSTGRES_PASSWORD=postgres
- TZ=Europe/Berlin
image: postgres:15-alpine
ports:
- 5432:5432
restart: always
volumes:
- /etc/localtime:/etc/localtime:ro