-
Notifications
You must be signed in to change notification settings - Fork 9
/
docker-compose.yml
63 lines (57 loc) · 1.19 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
version: "3"
services:
ui:
image: ${DOCKER_REPO}/registry-ui:${COMMIT_ID:-test}-${BUILD_ENV:-dev}
build:
context: .
dockerfile: "docker-builds/ui/Dockerfile"
args:
BUILD_ENV: "${BUILD_ENV:-dev}"
networks:
- dev_network
environment:
- PORT=80
server:
image: ${DOCKER_REPO}/registry-server:${COMMIT_ID:-test}-${BUILD_ENV:-dev}
build:
context: .
dockerfile: "docker-builds/server/Dockerfile"
args:
BUILD_ENV: "${BUILD_ENV:-dev}"
volumes:
- /home/$USER/logs:/logs
- /home/$USER/configs:/configs
networks:
- dev_network
environment:
- PORT=6200
ganache:
image: 0xorg/ganache-cli:latest
networks:
- dev_network
ports:
- 8545:8545
- 8549:8549
environment:
VERSION: 8.0.1
CHAIN_ID: 1337
NETWORK_ID: 1337
ipfs:
image: ipfs/go-ipfs:latest
volumes:
- vol_ipfs_data:/data/ipfs
networks:
- dev_network
ports:
- 4001:4001/tcp
- 4001:4001/udp
- 5001:5001
- 8080:8080
networks:
dev_network:
volumes:
vol_node_modules:
vol_m2_cache:
vol_ipfs_data:
vol_server_tests:
vol_target: