Skip to content

Commit

Permalink
feat: add app args
Browse files Browse the repository at this point in the history
  • Loading branch information
OnBridge Boatswain committed Dec 30, 2021
1 parent 72d43ea commit 66bb81c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ export DB_NAME=api
export ADMIN_USER=admin
export ADMIN_PASSWORD=admin
export REACT_APP_API_HOST=https://api.onbridge.io/api
export REACT_APP_L1_CHAIN_ID=42
export REACT_APP_L2_CHAIN_ID=97
export SECRET_KEY=<secret>
export PRIVATE_KEY=<secret>
export L1_GAS_PRICE=18000000000
Expand Down
5 changes: 3 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
version: '3'
services:

ingress:
build: ./ingress/
ports:
Expand Down Expand Up @@ -136,9 +135,11 @@ services:
dockerfile: Dockerfile
args:
REACT_APP_API_HOST: '${REACT_APP_API_HOST}'
REACT_APP_L1_CHAIN_ID: '${REACT_APP_L1_CHAIN_ID}'
REACT_APP_L2_CHAIN_ID: '${REACT_APP_L2_CHAIN_ID}'
image: app
restart: on-failure

battleverse:
build:
context: ./battleverse
Expand Down

0 comments on commit 66bb81c

Please sign in to comment.