bbb-status/docker-compose.yml

13 lines
375 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: .
command: ["log"] # see main.py for available commandline arguments
2020-11-28 21:11:21 +01:00
environment:
- PYTHONPATH=/usr/src/ # pythonpath is required to import from self created modules ("from langfingaz ...")
- PYTHONUNBUFFERED=1
2020-11-25 19:35:39 +01:00
volumes:
- ./secret:/usr/secret
- ./data:/usr/data
- ./plot:/usr/plot