11 lines
192 B
YAML
11 lines
192 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/
|