Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- version: "3"
- services:
- recorder:
- container_name: owntracks-recorder
- image: owntracks/recorder:0.8.7
- build:
- context: "./source/docker-recorder"
- args:
- VERSION: "0.8.7"
- command: "--port 0" # Seems to be needed to disable MQTT
- volumes:
- - "/etc/localtime:/etc/localtime:ro"
- - "./data/recorder/config:/config"
- - "./data/recorder/store:/store"
- ports:
- - "8083:8083"
- restart: unless-stopped
- frontend:
- container_name: owntracks-frontend
- image: owntracks/frontend:2.9.0
- environment:
- SERVER_HOST: "recorder"
- SERVER_PORT: "8083"
- volumes:
- - "./data/frontend:/usr/share/nginx/html/config"
- ports:
- - "80:80"
Advertisement
Add Comment
Please, Sign In to add comment