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.
Files
flucky/docker-compose.yml
CSRBot 5e45093c66
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
chore(deps): update docker.io/library/postgres docker tag to v16.2
2024-02-13 02:05:55 +00:00

15 lines
312 B
YAML

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