diff --git a/Dockerfile b/Dockerfile index 381f8824dda2cb1f2f0e93b1415948cc8f0d8a19..fda2f8886206e1584c05d20f18a8a7cffd6c9b33 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,11 +27,10 @@ VOLUME /app/mainnetdb EXPOSE 14666/tcp EXPOSE 14626/udp -EXPOSE 14626/tcp # Copy the Pre-built binary file from the previous stage COPY --from=build /go/bin/goshimmer . # Copy the docker config -COPY docker.config.json config.json +COPY config.json config.json ENTRYPOINT ["./goshimmer"] diff --git a/docker.config.json b/docker.config.json deleted file mode 100644 index ff931575eb04575e32fc42797f2a91cbf7d07c41..0000000000000000000000000000000000000000 --- a/docker.config.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "analysis": { - "serveraddress": "ressims.iota.cafe:188", - "serverport": 0 - }, - "autopeering": { - "address": "0.0.0.0", - "entrynodes": [ - "V8LYtWWcPYYDTTXLeIEFjJEuWlsjDiI0+Pq/Cx9ai6g=@116.202.49.178:14626" - ], - "port": 14626 - }, - "database": { - "directory": "mainnetdb" - }, - "gossip": { - "port": 14666 - }, - "logger": { - "Level": "info", - "DisableCaller": true, - "DisableStacktrace": false, - "Encoding": "console", - "OutputPaths": [ - "stdout", - "goshimmer.log" - ], - "DisableEvents": true - }, - "node": { - "disablePlugins": [], - "enablePlugins": [] - } -}