-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
58 lines (50 loc) · 1.2 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
version: "3.9"
services:
main_bot:
env_file:
- .env
environment:
- DISCORD_BOT_TOKEN=${DISCORD_MAIN_BOT_TOKEN}
build:
dockerfile: ./bot/Dockerfile
tty: true
command: python -m bot settings users servicing_posts bot_messages news_reposts find_friends
report_bot:
env_file:
- .env
environment:
- DISCORD_BOT_TOKEN=${DISCORD_REPORT_BOT_TOKEN}
build:
dockerfile: ./bot/Dockerfile
tty: true
command: python -m bot reports
voice_bot:
env_file:
- .env
environment:
- DISCORD_BOT_TOKEN=${DISCORD_VOICE_BOT_TOKEN}
build:
dockerfile: ./bot/Dockerfile
tty: true
command: python -m bot voice_channels
monitoring_bot:
env_file:
- .env
environment:
- DISCORD_BOT_TOKEN=${DISCORD_MONITORING_BOT_TOKEN}
build:
dockerfile: ./bot/Dockerfile
tty: true
command: python -m bot info_provider server_status banner_updater
image-generator:
env_file:
- .env
build:
dockerfile: ./image_generator/Dockerfile
tty: true
command: python -m image_generator
redis:
image: redis:7.2-alpine
restart: always
volumes:
- ./storage/redis:/data