discord_intro_quiz_bot/docker-compose.yml

19 lines
317 B
YAML

services:
bot:
build: ./bot
volumes:
- ./bot:/bot
- ./bucket:/bot/bucket
environment:
- DISCORD_TOKEN=${DISCORD_TOKEN}
web:
build: ./web
volumes:
- ./web:/web
- ./bucket:/web/bucket
- ./web/data:/web/data
ports:
- "5000:80"
links:
- bot