discord_intro_quiz_bot/docker-compose.yml

19 lines
317 B
YAML
Raw Normal View History

2024-08-03 10:29:46 +00:00
services:
bot:
build: ./bot
volumes:
- ./bot:/bot
- ./bucket:/bot/bucket
environment:
2024-08-12 08:11:32 +00:00
- DISCORD_TOKEN=${DISCORD_TOKEN}
2024-08-03 10:29:46 +00:00
web:
build: ./web
volumes:
- ./web:/web
- ./bucket:/web/bucket
- ./web/data:/web/data
ports:
- "5000:80"
links:
- bot