bbb-status/docker-compose.yml

14 lines
483 B
YAML
Raw Normal View History

2020-11-25 19:35:39 +01:00
version: '3.7'
services:
2020-11-29 16:33:16 +01:00
bbb-status:
2020-11-25 19:35:39 +01:00
build: .
2020-12-03 15:53:17 +01:00
command: ["log-verbose"] # see main.py for available commandline arguments
2020-12-05 14:02:59 +01:00
restart: unless-stopped
2020-11-28 21:11:21 +01:00
environment:
- PYTHONPATH=/usr/src/ # pythonpath is required to import from self created modules ("from langfingaz ...")
2022-11-20 14:25:03 +01:00
- PYTHONUNBUFFERED=1 # unbuffered output, otherwise script sleeps before any output appears
2020-11-25 19:35:39 +01:00
volumes:
- ./secret:/usr/secret
- ./data:/usr/data
- ./plot:/usr/plot