Markus Pesch
dbef4f8241
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.
17 lines
367 B
YAML
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
|