-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathdocker-compose.yaml
79 lines (77 loc) · 1.66 KB
/
docker-compose.yaml
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
version: '3'
services:
get_accounts:
build: ./services/get_accounts
env_file:
- ./config/.env
- ./config/get_accounts/.env
networks:
- eosio_api_network
ports:
- "8902:8000"
restart: on-failure
volumes:
- .:/src
get_keys_accounts:
build: ./services/get_keys_accounts
env_file:
- ./config/.env
- ./config/get_keys_accounts/.env
networks:
- eosio_api_network
ports:
- "8904:8000"
restart: on-failure
volumes:
- .:/src
get_available_endpoints:
build: ./services/get_available_endpoints
env_file:
- ./config/.env
- ./config/get_available_endpoints/.env
networks:
- eosio_api_network
ports:
- "8900:8000"
restart: on-failure
volumes:
- .:/src
get_supported_apis:
build: ./services/get_supported_apis
env_file:
- ./config/.env
- ./config/get_supported_apis/.env
networks:
- eosio_api_network
ports:
- "8905:8000"
restart: on-failure
volumes:
- .:/src
get_blocks:
build: ./services/get_blocks
env_file:
- ./config/.env
- ./config/get_blocks/.env
networks:
- eosio_api_network
ports:
- "8903:8000"
restart: on-failure
volumes:
- .:/src
get_currency_balances:
build: ./services/get_currency_balances
env_file:
- ./config/.env
- ./config/get_currency_balances/.env
networks:
- eosio_api_network
ports:
- "8901:8000"
restart: on-failure
volumes:
- .:/src
networks:
eosio_api_network:
external: true