fabcal/docker-compose.yml.example

18 lines
414 B
Plaintext
Raw Normal View History

2022-03-27 23:24:59 +02:00
version: "2"
services:
fabcal:
build: .
restart: unless-stopped
ports:
- 5000:5000
environment:
2023-02-18 13:30:57 +01:00
- FABCAL_CACHE_EXPIRE=120
2023-04-20 03:00:41 +02:00
- LANG=de
- LC_ALL=de_DE.UTF-8
2023-02-18 13:30:57 +01:00
volumes:
2023-04-20 03:01:08 +02:00
- ./config.yml:/app/config.yml:ro
2022-03-27 23:24:59 +02:00
# use the line below when running this behind reverse proxy (only if it sets the proxy headers, though)
#command: --proxy-headers --forwarded-allow-ips="*"