You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
432 B
23 lines
432 B
|
|
version: "3.8"
|
|
|
|
services:
|
|
ontime:
|
|
container_name: ontime
|
|
image: getontime/ontime:latest
|
|
ports:
|
|
- "4001:4001/tcp"
|
|
- "127.0.0.1:8888:8888/udp"
|
|
volumes:
|
|
- "./ontime-db:/server/preloaded-db"
|
|
- "./ontime-styles/override.css:/external/styles/override.css"
|
|
environment:
|
|
- TZ=Europe/Berlin
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
- proxy
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|
|
|