27 lines
648 B
YAML
27 lines
648 B
YAML
|
|
---
|
||
|
|
services:
|
||
|
|
client-bot:
|
||
|
|
image: 192.168.8.174:3000/vrubel/chess-calc:latest
|
||
|
|
container_name: chess-calc-client-bot
|
||
|
|
restart: unless-stopped
|
||
|
|
env_file: .env
|
||
|
|
environment:
|
||
|
|
- STATS_DB=/app/data/tournaments.db
|
||
|
|
volumes:
|
||
|
|
- bot-data:/app/data
|
||
|
|
command: ["python3", "-m", "bots.client_bot"]
|
||
|
|
|
||
|
|
admin-bot:
|
||
|
|
image: 192.168.8.174:3000/vrubel/chess-calc:latest
|
||
|
|
container_name: chess-calc-admin-bot
|
||
|
|
restart: unless-stopped
|
||
|
|
env_file: .env
|
||
|
|
environment:
|
||
|
|
- STATS_DB=/app/data/tournaments.db
|
||
|
|
volumes:
|
||
|
|
- bot-data:/app/data
|
||
|
|
command: ["python3", "-m", "bots.admin_bot"]
|
||
|
|
|
||
|
|
volumes:
|
||
|
|
bot-data:
|