-
Notifications
You must be signed in to change notification settings - Fork 59
/
docker-compose.feefeed.yml
59 lines (58 loc) · 1.62 KB
/
docker-compose.feefeed.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
version: "2.3"
services:
childchain:
environment:
- FEE_ADAPTER=feed
#- FEE_FEED_URL=http://172.27.0.110:4000/api/v1
- FEE_FEED_URL=http://172.27.0.110/file.json
depends_on:
feefeed:
condition: service_healthy
feefeed:
image: omisego/feefeed_mock:latest
volumes:
- ./docker/static_feefeed/:/www-data/
ports:
- "4000:80"
expose:
- "4000"
networks:
chain_net:
ipv4_address: 172.27.0.110
# feefeed:
# image: "gcr.io/omisego-development/feefeed:latest"
# command: "start"
# container_name: feefeed
# environment:
# - GITHUB_TOKEN=""
# - GITHUB_ORGANISATION=omgnetwork
# - GITHUB_REPO=fee-rules-public
# - SENTRY_DSN=""
# - GITHUB_BRANCH=master
# - RULES_FETCH_INTERVAL=20
# - RATES_FETCH_INTERVAL=20
# - GITHUB_FILENAME=fee_rules
# - DATABASE_URL=postgresql://feefeed:[email protected]:5432/feefeed
# - SECRET_KEY_BASE="Y8naENMR8b+vbPHILjwNtEfWFrnbGi2k+UYWm75VnKHfsavmyGLtTmmeJxAGK+zJ"
# - DATADOG_DISABLED=true
# - DATADOG_HOST="localhost"
# - ETHEREUM_NODE_URL=http://172.27.0.102:80
# ports:
# - "4000:4000"
# expose:
# - "4000"
# depends_on:
# postgres:
# condition: service_healthy
# nginx:
# condition: service_healthy
# restart: always
# healthcheck:
# test: curl -v --silent http://localhost:4000/api/v1/fees 2>&1 | grep contract_address
# interval: 4s
# timeout: 2s
# retries: 30
# start_period: 60s
# networks:
# chain_net:
# ipv4_address: 172.27.0.110