-
Notifications
You must be signed in to change notification settings - Fork 5
/
example-docker-compose.yml
52 lines (51 loc) · 1.35 KB
/
example-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
version: "2"
services:
suggestions_bot_cluster_1:
container_name: "suggestions_bot_cluster_1"
image: docker.pkg.github.com/suggestionsbot/suggestions-bot-rewrite/suggestions-bot-rewrite:latest
build:
dockerfile: Dockerfile
context: .
environment:
PROD: 1
CLUSTER: 1
TOKEN: ...
MONGO_URL: ...
UPTIME_PATCH: ...
SUGGESTIONS_API_KEY: ...
SUGGESTIONS_STATS_API_URL: ....
suggestions_bot_cluster_2:
container_name: "suggestions_bot_cluster_2"
environment:
CLUSTER: 2
UPTIME_PATCH: ...
extends:
service: suggestions_bot_cluster_1
suggestions_bot_cluster_3:
container_name: "suggestions_bot_cluster_3"
environment:
CLUSTER: 3
UPTIME_PATCH: ...
extends:
service: suggestions_bot_cluster_1
suggestions_bot_cluster_4:
container_name: "suggestions_bot_cluster_4"
environment:
CLUSTER: 4
UPTIME_PATCH: ...
extends:
service: suggestions_bot_cluster_1
suggestions_bot_cluster_5:
container_name: "suggestions_bot_cluster_5"
environment:
CLUSTER: 5
UPTIME_PATCH: ...
extends:
service: suggestions_bot_cluster_1
suggestions_bot_cluster_6:
container_name: "suggestions_bot_cluster_6"
environment:
CLUSTER: 6
UPTIME_PATCH: ...
extends:
service: suggestions_bot_cluster_1