22 lines
428 B
YAML
22 lines
428 B
YAML
version: "3.3"
|
|
services:
|
|
bot:
|
|
build: .
|
|
command: python3 /bot/src/main.py
|
|
volumes:
|
|
- ./out:/bot/out
|
|
- ./conf:/bot/conf
|
|
environment:
|
|
- CONF_FOLDER=/bot/conf/
|
|
user: 1000:1000
|
|
web:
|
|
build: .
|
|
command: python3 /bot/src/web.py
|
|
volumes:
|
|
- ./out:/bot/out
|
|
- ./conf:/bot/conf
|
|
environment:
|
|
- CONF_FOLDER=/bot/conf/
|
|
user: 1000:1000
|
|
ports:
|
|
- "5000:5000" |