-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
30 lines (28 loc) · 886 Bytes
/
docker-compose.yml
File metadata and controls
30 lines (28 loc) · 886 Bytes
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
version: "3.7"
services:
hub_mainnet:
container_name: hub_mainnet
build:
context: .
dockerfile: Dockerfile
args:
VITE_NETWORK_ENV: "mainnet"
VITE_API_URL: "https://mainnet-api.aut.id/api"
VITE_NODE_ENV: "production"
VITE_DEFAULT_CHAIN_ID: "137"
VITE_GRAPH_API_URL: "https://subgraph.satsuma-prod.com/57f77e118c8e/3zi14w18sr5q42jggc1n6a--464735/aut-mainnet/api"
ports:
- "5002:80"
hub_main:
container_name: hub_main
build:
context: .
dockerfile: Dockerfile
args:
VITE_NETWORK_ENV: "testnet"
VITE_API_URL: "https://testnet-api.aut.id/api"
VITE_NODE_ENV: "development"
VITE_DEFAULT_CHAIN_ID: "80002"
VITE_GRAPH_API_URL: "https://subgraph.satsuma-prod.com/57f77e118c8e/3zi14w18sr5q42jggc1n6a--464735/aut-amoy/api"
ports:
- "5002:80"