-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdocker-compose.yml
executable file
·60 lines (56 loc) · 1.22 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
59
60
version: '2.1'
services:
bot:
build: ./bot
env_file: .app_env
volumes:
- ./bot:/code
- ~/.telegram-channels-feed/bot:/data
depends_on:
db:
condition: service_healthy
restart: unless-stopped
sender:
build: ./sender
env_file: .app_env
environment:
- JAVA_OPTS=-Xmx256M -Xms256M
mem_limit: 512mb
volumes:
- ~/.telegram-channels-feed/sender:/tmp
depends_on:
db:
condition: service_healthy
rabbit:
condition: service_healthy
restart: unless-stopped
tg:
build: ./tg
env_file: .app_env
environment:
- JAVA_OPTS=-Xmx256M -Xms256M
mem_limit: 512mb
volumes:
- ~/.telegram-channels-feed/tg:/tmp
depends_on:
db:
condition: service_healthy
rabbit:
condition: service_healthy
restart: unless-stopped
db:
build: ./init/db
volumes:
- ~/.telegram-channels-feed/db:/var/lib/postgresql/data
ports:
- "5432:5432"
restart: unless-stopped
rabbit:
build: ./init/rabbit
hostname: rabbit
volumes:
- ~/.telegram-channels-feed/rabbitmq:/var/lib/rabbitmq
ports:
- "5672:5672"
- "15672:15672"
restart: unless-stopped