-
Notifications
You must be signed in to change notification settings - Fork 35
/
docker-compose.local.yml
44 lines (43 loc) · 1.46 KB
/
docker-compose.local.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
# This compose builds the essential components for running a local testnet
version: '3.9'
services:
gethnetwork:
image: "testnetobscuronet.azurecr.io/obscuronet/eth2network:latest"
build:
context: $ROOT_PATH
dockerfile: ./testnet/eth2network.Dockerfile
host:
image: "testnetobscuronet.azurecr.io/obscuronet/host:latest"
build:
context: $ROOT_PATH
dockerfile: ./dockerfiles/host.Dockerfile
enclave:
image: "testnetobscuronet.azurecr.io/obscuronet/enclave:latest"
build:
context: $ROOT_PATH
dockerfile: ./dockerfiles/enclave.Dockerfile
# enclave-debug:
# image: "testnetobscuronet.azurecr.io/obscuronet/enclave_debug:latest"
# build:
# context: $ROOT_PATH
# dockerfile: ./dockerfiles/enclave.debug.Dockerfile
ten-scan:
image: "testnetobscuronet.azurecr.io/obscuronet/tenscan:latest"
build:
context: $ROOT_PATH
dockerfile: ./tools/tenscan/backend/Dockerfile
hardhat-deployer:
image: "testnetobscuronet.azurecr.io/obscuronet/hardhatdeployer:latest"
build:
context: $ROOT_PATH
dockerfile: ./tools/hardhatdeployer/Dockerfile
wallet-extension:
image: "testnetobscuronet.azurecr.io/obscuronet/obscuro_gateway:latest"
build:
context: $ROOT_PATH
dockerfile: ./tools/walletextension/Dockerfile
faucet:
image: "testnetobscuronet.azurecr.io/obscuronet/faucet:latest"
build:
context: $ROOT_PATH
dockerfile: ./tools/faucet/Dockerfile