PKGBUILD/docker-compose.yml
Markus Pesch dbef4f8241
fix(pkg/config): use storage endpoints
changes:
- Only one storage endpoint can be defined. This consists of a URL which
  can be used to specify whether the data is to be stored in a file or
  in a database.
2019-12-08 12:49:21 +01:00

17 lines
367 B
YAML

version: '3'
services:
flucky-db:
container_name: postgres
environment:
- PGTZ=${TZ}
- POSTGRES_DB=${POSTGRES_DB_NAME}
- POSTGRES_USER=${POSTGRES_DB_USER}
- POSTGRES_PASSWORD=${POSTGRES_DB_PASS}
- TZ=${TZ}
image: postgres:11.5-alpine
ports:
- 5432:5432
restart: always
volumes:
- /etc/localtime:/etc/localtime:ro