This repository has been archived by the owner on Feb 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
97 lines (97 loc) · 1.75 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
version: "3"
services:
redis:
image: redis
ports:
- "6379:6379" #Open temporarily for debugging
networks:
- redisnet
minio:
image: minio/minio:latest
ports:
- "9000:9000"
networks:
- minionet
environment:
- MINIO_ACCESS_KEY=ACCESSKEY
- MINIO_SECRET_KEY=SECRETKEY
volumes:
- ./minio:/export
command: minio server /export
admin:
build: ./admin
tty: true
environment:
- ADMIN_PORT=10201
- ADMIN_ID=admin
- ADMIN_PASSWORD=password
- JWT_SECRET=secret
- COOKIE_SECRET=secret
ports:
- "10201:10201"
depends_on:
- redis
networks:
- redisnet
volunteers:
build: ./volunteers
tty: true
environment:
- VOLUNTEERS_PORT=10202
- SECRET=secret
ports:
- "10202:10202"
depends_on:
- redis
networks:
- redisnet
events:
build: ./events
tty: true
environment:
- EVENTS_PORT=10203
- SECRET=secret
- DEFAULT_SIZE=100
ports:
- "10203:10203"
depends_on:
- redis
networks:
- redisnet
fileserve:
build: ./fileserve
tty: true
environment:
- FILESERVE_PORT=10204
- MINIO_ACCESS_KEY=ACCESSKEY
- MINIO_SECRET_KEY=SECRETKEY
ports:
- "10204:10204"
networks:
- minionet
organisers:
build: ./organisers
tty: true
environment:
- ORGANISERS_PORT=10205
- SECRET=secret
ports:
- "10205:10205"
depends_on:
- redis
networks:
- redisnet
updater:
build: ./updater
tty: true
environment:
- UPDATES_PORT=10206
depends_on:
- redis
ports:
- "10206:10206"
networks:
- redisnet
networks:
redisnet:
minionet: