-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
75 lines (68 loc) · 1.44 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
version: '3.7'
services:
ipfs-node:
container_name: "stellot-ipfs-node"
image: ipfs/go-ipfs
ports: # https://github.com/ipfs/go-ipfs/blob/master/Dockerfile#L74
- "4001"
- "5001"
- "8080"
- "8081"
networks:
- public
- default
mongo:
container_name: "stellot-tds-mongodb"
image: mongo:latest
restart: 'unless-stopped'
networks:
- public
- default
stellar:
container_name: "stellot-stellar"
image: stellar/quickstart
restart: 'unless-stopped'
command: --standalone
ports:
- "8000"
networks:
- public
- default
tds:
container_name: "stellot-tds"
build:
context: tds
dockerfile: Dockerfile
env_file: ./tds/.env
restart: 'unless-stopped'
environment:
- STELLAR=http://stellar:8000
- KEYBASE_AUTH_SERVER_URL=http://keybase-auth
- EMAILS_AUTH_SERVER_URL=http://emails-auth
- IPFS_NODE_URL=http://ipfs-node:5001
links:
- mongo
- stellar
- emails-auth
- ipfs-node
depends_on:
- stellar
- mongo
- emails-auth
- ipfs-node
networks:
- public
- default
emails-auth:
container_name: "stellot-emails-auth"
build:
context: emails-auth
dockerfile: Dockerfile
env_file: ./emails-auth/.env
restart: 'unless-stopped'
networks:
- public
- default
networks:
public:
external: true