mirror of
https://codeberg.org/langfingaz/bbb-status
synced 2024-11-21 20:23:17 +01:00
13 lines
375 B
YAML
13 lines
375 B
YAML
version: '3.7'
|
|
services:
|
|
bbb-status:
|
|
build: .
|
|
command: ["log"] # see main.py for available commandline arguments
|
|
environment:
|
|
- PYTHONPATH=/usr/src/ # pythonpath is required to import from self created modules ("from langfingaz ...")
|
|
- PYTHONUNBUFFERED=1
|
|
volumes:
|
|
- ./secret:/usr/secret
|
|
- ./data:/usr/data
|
|
- ./plot:/usr/plot
|