13 lines
230 B
YAML
13 lines
230 B
YAML
version: '3'
|
|
services:
|
|
server:
|
|
build: .
|
|
command: python3 scalesrv.py
|
|
ports:
|
|
- "18001:18001"
|
|
clustering:
|
|
build: .
|
|
command: python3 cluster.py
|
|
influx:
|
|
build: .
|
|
command: python3 mqtt2influx.py
|