1
0
mirror of https://github.com/oceanprotocol/barge.git synced 2024-11-22 09:47:04 +01:00

Exposed keeper port to localhost (pleuston)

This commit is contained in:
Javier Cortejoso 2018-12-04 11:36:41 +01:00
parent f91b0e4511
commit c917328e54
No known key found for this signature in database
GPG Key ID: FBEEF3131E39EBCF
2 changed files with 5 additions and 0 deletions

View File

@ -2,6 +2,8 @@ version: '2.1'
services:
keeper-contracts:
image: oceanprotocol/keeper-contracts:${OCEAN_VERSION:-stable}
ports:
- "${KEEPER_PORT}:8545"
networks:
backend:
ipv4_address: 172.15.0.14

View File

@ -14,6 +14,8 @@ export BRIZO_ENV_FILE=$DIR/brizo.env
export PROJECT_NAME="ocean"
# Specify the ethereum default RPC container provider
export RPC_URL='keeper-contracts'
export KEEPER_PORT='8545'
# colors
COLOR_R="\033[0;31m" # red
@ -64,6 +66,7 @@ while :; do
COMPOSE_FILES+=" -f ${COMPOSE_DIR}/secret_store.yml"
export RPC_URL='parity-node'
export KEEPER_NETWORK_NAME="ocean_poa_net_local"
export KEEPER_PORT='8546'
printf $COLOR_Y'Starting with local Parity node...\n\n'$COLOR_RESET
;;
--purge)