-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
67 lines (62 loc) · 1.75 KB
/
Copy pathdocker-compose.yml
File metadata and controls
67 lines (62 loc) · 1.75 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# NozkVault mint — one container per chain, same image (nozk_py/Dockerfile).
#
# First-time setup (Ethereum Sepolia):
# cp mint.ethereum.testnet.env.example mint.ethereum.testnet.env
# # edit mint.ethereum.testnet.env with your keys and RPC
#
# Run default (Ethereum Sepolia only):
# docker compose up -d --build
#
# Enable other testnets after adding the matching mint.<chain>.testnet.env file:
# docker compose --profile avalanche up -d --build
# docker compose --profile monad up -d --build
# docker compose --profile bnb up -d --build
# docker compose --profile base up -d --build
#
# Logs: docker compose logs -f mint-ethereum-testnet
services:
mint-ethereum-testnet:
profiles: [ethereum]
build:
context: .
dockerfile: nozk_py/Dockerfile
env_file:
- mint.ethereum.testnet.env
container_name: mint-ethereum-testnet
restart: unless-stopped
mint-avalanche-testnet:
profiles: [avalanche]
build:
context: .
dockerfile: nozk_py/Dockerfile
env_file:
- mint.avalanche.testnet.env
container_name: mint-avalanche-testnet
restart: unless-stopped
mint-monad-testnet:
profiles: [monad]
build:
context: .
dockerfile: nozk_py/Dockerfile
env_file:
- mint.monad.testnet.env
container_name: mint-monad-testnet
restart: unless-stopped
mint-bnb-testnet:
profiles: [bnb]
build:
context: .
dockerfile: nozk_py/Dockerfile
env_file:
- mint.bnb.testnet.env
container_name: mint-bnb-testnet
restart: unless-stopped
mint-base-testnet:
profiles: [base]
build:
context: .
dockerfile: nozk_py/Dockerfile
env_file:
- mint.base.testnet.env
container_name: mint-base-testnet
restart: unless-stopped