-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.automoderator.yml
82 lines (75 loc) · 2.49 KB
/
docker-compose.automoderator.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
version: '3.7'
services:
automoderator-automod:
image: chatsift/automoderator
env_file:
- ./.env.automoderator
environment:
DB_URL: 'postgresql://user:admin@postgres-old:5432/automoderator'
restart: unless-stopped
volumes:
- ./logs/automoderator:/usr/service/logs
command: ['node', '--enable-source-maps', 'services/automod/dist/index.js']
automoderator-discord-proxy:
image: chatsift/automoderator
env_file:
- ./.env.automoderator
volumes:
- ./logs/automoderator:/usr/service/logs
restart: unless-stopped
expose:
- 3003
command: ['node', '--enable-source-maps', 'services/discord-proxy/dist/index.js']
automoderator-gateway:
image: chatsift/automoderator
env_file:
- ./.env.automoderator
environment:
AMQP_URL: 'amqp://rabbitmq:5672'
REDIS_URL: 'redis://redis:6379/0'
restart: unless-stopped
volumes:
- ./logs/automoderator:/usr/service/logs
command: ['node', '--enable-source-maps', 'services/gateway/dist/index.js']
automoderator-interactions:
image: chatsift/automoderator
env_file:
- ./.env.automoderator
environment:
DB_URL: 'postgresql://user:admin@postgres-old:5432/automoderator'
restart: unless-stopped
expose:
- 3002
volumes:
- ./logs/automoderator:/usr/service/logs
command: ['node', '--enable-source-maps', 'services/interactions/dist/index.js']
automoderator-logging:
image: chatsift/automoderator
env_file:
- ./.env.automoderator
environment:
DB_URL: 'postgresql://user:admin@postgres-old:5432/automoderator'
restart: unless-stopped
volumes:
- ./logs/automoderator:/usr/service/logs
command: ['node', '--enable-source-maps', 'services/logging/dist/index.js']
automoderator-mod-observer:
image: chatsift/automoderator
env_file:
- ./.env.automoderator
environment:
DB_URL: 'postgresql://user:admin@postgres-old:5432/automoderator'
restart: unless-stopped
volumes:
- ./logs/automoderator:/usr/service/logs
command: ['node', '--enable-source-maps', 'services/mod-observer/dist/index.js']
automoderator-scheduler:
image: chatsift/automoderator
env_file:
- ./.env.automoderator
environment:
DB_URL: 'postgresql://user:admin@postgres-old:5432/automoderator'
restart: unless-stopped
volumes:
- ./logs/automoderator:/usr/service/logs
command: ['node', '--enable-source-maps', 'services/scheduler/dist/index.js']