mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-03 22:47:59 +00:00
323d365f1a
* fix/147: add latest tag to release * fix/147: add latest tag to docker compose * fix/148: add timezone example to docker-compose * docker: version bump
15 lines
292 B
YAML
15 lines
292 B
YAML
version: "3"
|
|
|
|
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"
|
|
environment:
|
|
- TZ=Asia/Singapore
|
|
restart: unless-stopped
|