diff --git a/build/Dockerfile b/build/Dockerfile index bba3dbb..da96382 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -15,4 +15,4 @@ RUN apk add --no-cache ca-certificates COPY --from=builder /go/core-geth/build/bin/geth /usr/local/bin -ENTRYPOINT geth --classic --http --http.addr 0.0.0.0 --http.corsdomain "*" --http.vhosts "*" --ws --ws.origins "*" --ws.addr 0.0.0.0 --port {$P2P_PORT} --syncmode ${SYNCMODE:-snap} $EXTRA_OPTS +ENTRYPOINT geth --classic --http --http.addr 0.0.0.0 --http.corsdomain "*" --http.vhosts "*" --ws --ws.origins "*" --ws.addr 0.0.0.0 --port $P2P_PORT --syncmode ${SYNCMODE:-snap} $EXTRA_OPTS diff --git a/docker-compose.yml b/docker-compose.yml index a8747ac..83b5583 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,4 +1,4 @@ -version: "3.4" +version: "3.5" services: ethereum-classic.dnp.dappnode.eth: image: "ethereum-classic.dnp.dappnode.eth:1.1.1" @@ -15,6 +15,6 @@ services: ports: - "30913:30913/udp" - "30913:30913/tcp" - restart: always + restart: unless-stopped volumes: geth: {}