From 493fe631f78d6d1463b5727fd828a98c29efb550 Mon Sep 17 00:00:00 2001 From: Karl Floersch Date: Tue, 15 Sep 2020 17:39:41 -0400 Subject: [PATCH] Update entrypoint.sh to include * for CORS (#19) * Update entrypoint.sh * Update entrypoint.sh --- docker/entrypoint.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh index 6f87a4164..df0e8bb68 100755 --- a/docker/entrypoint.sh +++ b/docker/entrypoint.sh @@ -23,6 +23,7 @@ geth --dev \ --rpc \ --rpcaddr $HOSTNAME \ --rpcvhosts='*' \ + --rpccorsdomain='*' \ --rpcport $PORT \ --networkid $NETWORK_ID \ --rpcapi 'eth,net' \ @@ -30,4 +31,4 @@ geth --dev \ --targetgaslimit $TARGET_GAS_LIMIT \ --nousb \ --gcmode=archive \ - --verbosity "6" \ No newline at end of file + --verbosity "6"