-
Notifications
You must be signed in to change notification settings - Fork 6
/
docker-compose.yml
60 lines (60 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
version: "3"
services:
postgres:
image: postgres:9.6
environment:
POSTGRES_DB: tezoslink
POSTGRES_USER: user
POSTGRES_PASSWORD: pass
ports:
- "5432:5432"
api:
build:
context: .
dockerfile: build/package/api.Dockerfile
ports:
- "8000:8000"
environment:
ENV: local
restart: on-failure
depends_on:
- postgres
proxy:
build:
context: .
dockerfile: build/package/proxy.Dockerfile
ports:
- "8001:8001"
environment:
ENV: local
TEZOS_NETWORK: MAINNET
restart: on-failure
depends_on:
- postgres
proxy-carthagenet:
build:
context: .
dockerfile: build/package/proxy.Dockerfile
ports:
- "8002:8002"
environment:
ENV: local
TEZOS_NETWORK: CARTHAGENET
SERVER_PORT: 8002
restart: on-failure
depends_on:
- postgres
node:
image: mockserver/mockserver:mockserver-5.9.0
environment:
LOG_LEVEL: "DEBUG"
SERVER_PORT: 1090
ports:
- "8765:1090"
node-rolling:
image: mockserver/mockserver:mockserver-5.9.0
environment:
LOG_LEVEL: "DEBUG"
SERVER_PORT: 1090
ports:
- "8766:1090"