forked from SamBouwer/any-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-example.yaml
More file actions
83 lines (73 loc) · 1.66 KB
/
docker-compose-example.yaml
File metadata and controls
83 lines (73 loc) · 1.66 KB
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
version: "3.8"
services:
minio:
container_name: minio_anytype
hostname: minio_anytype
image: quay.io/minio/minio
command: server --console-address ":9001" /data
ports:
- 9000:9000
- 9001:9001
volumes:
- s3:/data
restart: unless-stopped
env_file:
- .env.example
mongo_db:
container_name: mongo_anytype
image: mongo:4.4
volumes:
- db:/data/db
restart: unless-stopped
env_file:
- .env.example
redis_db:
container_name: redis_anytype
image: redis
ports:
- "6379:6379"
any-sync-coordinator:
container_name: any-sync-coordinator
image: docker.io/sambouwer/any-sync-coordinator-docker:0.33.3
ports:
- "4830:4830" # coordinator
restart: unless-stopped
stdin_open: true
tty: true
build:
context: .
target: any-sync-coordinator
any-sync-node:
container_name: any-sync-node
image: docker.io/sambouwer/any-sync-node-docker:0.33.3
ports:
- "4430:4430" # sync node
restart: unless-stopped
stdin_open: true
tty: true
build:
context: .
target: any-sync-node
any-sync-filenode:
container_name: any-sync-filenode
image: docker.io/sambouwer/any-sync-filenode-docker:0.33.3
ports:
- "4730:4730" # filenode
restart: unless-stopped
stdin_open: true
tty: true
build:
context: .
target: any-sync-filenode
any-heart:
container_name: any-heart
image: docker.io/sambouwer/any-heart-docker:0.33.3
restart: unless-stopped
stdin_open: true
tty: true
build:
context: .
target: any-heart
volumes:
s3:
db: