telegram-apk-downloader/docker-compose.yml

22 lines
428 B
YAML
Raw Normal View History

2020-11-25 22:40:20 +01:00
version: "3.3"
services:
bot:
build: .
command: python3 /bot/src/main.py
volumes:
- ./out:/bot/out
- ./conf:/bot/conf
environment:
- CONF_FOLDER=/bot/conf/
2020-11-28 12:52:18 +01:00
user: 1000:1000
2020-12-06 19:59:31 +01:00
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"