forked from makerdao/market-maker-keeper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
35 lines (32 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
version: "3.2"
services:
keeper:
build: .
image: makerdao/market-maker-keeper
coinbase-ethdai-keeper:
image: makerdao/market-maker-keeper
env_file:
- .env
volumes:
- $PWD/docker-config:/opt/maker/config
command: >
bash -c "./coinbase-market-maker-keeper \
--coinbase-api-key $${COINBASE_API_KEY} \
--coinbase-secret-key $${COINBASE_SECRET_KEY} \
--coinbase-password $${COINBASE_PASSWORD} \
--price-feed $${ETH_DAI_PRICE_FEED?:} \
--pair ETH-DAI \
--config /opt/maker/config/$${COINBASE_ETH_DAI_BANDS?:}"
ganache:
image: trufflesuite/ganache-cli:v6.9.1
container_name: ganache
ports:
- "8555:8555"
expose:
- "8555"
command: "--gasLimit 10000000
-p 8555
--account=\"0x91cf2cc3671a365fcbf38010ff97ee31a5b7e674842663c56769e41600696ead,1000000000000000000000000\"
--account=\"0xc0a550404067ce46a51283e0cc99ec3ba832940064587147a8db9a7ba355ef27,1000000000000000000000000\",
--account=\"0x6ca1cfaba9715aa485504cb8a3d3fe54191e0991b5f47eb982e8fb40d1b8e8d8,1000000000000000000000000\",
--account=\"0x1a9e422172e3d84487f7c833e3895f2f65c35eff7e68783adaa0c5bbe741ca8a,1000000000000000000000000\""