-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdocker-compose.yml
65 lines (58 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
59
60
61
62
63
64
65
version: "3.8"
services:
minio:
image: quay.io/minio/minio
command: server --console-address ":9001" /data
ports:
- 9000:9000
- 9001:9001
volumes:
- s3:/data
restart: unless-stopped
env_file:
- backupnode.env
mongo:
image: mongo:4.4
volumes:
- mongodb:/data/db
ports: []
# - "27017:27017"
restart: unless-stopped
environment:
- MONGO_INITDB_DATABASE=coordinator
env_file:
- backupnode.env
redis:
image: redis
ports: []
# - "6379:6379"
coordinator-node:
build:
context: .
target: any-sync-coordinator
ports:
- "4830:4830"
restart: unless-stopped
volumes:
- ./configurations/coordinator.yml:/etc/anytype/coordinator.yml
sync-node:
build:
context: .
target: any-sync-node
ports:
- "4430:4430"
restart: unless-stopped
volumes:
- ./configurations/sync_1.yml:/etc/anytype/sync_1.yml
file-node:
build:
context: .
target: any-sync-filenode
ports:
- "4730:4730"
restart: unless-stopped
volumes:
- ./configurations/file_1.yml:/etc/anytype/file_1.yml
volumes:
s3:
mongodb: