This repository was archived by the owner on Apr 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
47 lines (45 loc) · 1.54 KB
/
docker-compose.yml
File metadata and controls
47 lines (45 loc) · 1.54 KB
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
version: "3.2"
services:
flipper_auction:
build: .
image: makerdao/auction-keeper
env_file:
- .env
volumes:
- $PWD/hush:/home/keeper/hush
- $PWD/model:/home/keeper/model
command: >
bash -c "./auction-keeper --rpc-host=$${RPC_HOST} --rpc-port=$${RPC_PORT} \
--eth-from=$${ETH_FROM} \
--eth-key='key_file=/home/keeper/hush/auction.json,pass_file=/home/keeper/hush/auction.pass' \
--flipper=$${FLIPPER_ADDRESS} \
--cat=$${CAT_ADDRESS} \
--model '/home/keeper/model/model.sh'"
flopper_auction:
image: makerdao/auction-keeper
env_file:
- .env
volumes:
- $PWD/hush:/home/keeper/hush
- $PWD/model:/home/keeper/model
command: >
bash -c "./auction-keeper --rpc-host=$${RPC_HOST} --rpc-port=$${RPC_PORT} \
--eth-from=$${ETH_FROM} \
--eth-key='key_file=/home/keeper/hush/auction.json,pass_file=/home/keeper/hush/auction.pass' \
--flopper=$${FLOPPER_ADDRESS} \
--vow=$${VOW_ADDRESS} \
--model '/home/keeper/model/model.sh'"
flapper_auction:
image: makerdao/auction-keeper
env_file:
- .env
volumes:
- $PWD/hush:/home/keeper/hush
- $PWD/model:/home/keeper/model
command: >
bash -c "./auction-keeper --rpc-host=$${RPC_HOST} --rpc-port=$${RPC_PORT} \
--eth-from=$${ETH_FROM} \
--eth-key='key_file=/home/keeper/hush/auction.json,pass_file=/home/keeper/hush/auction.pass' \
--flapper=$${FLAPPER_ADDRESS} \
--vow=$${VOW_ADDRESS} \
--model '/home/keeper/model/model.sh'"