From 5ba8b5741146591bcdbe9567bea77ebeaee42f7b Mon Sep 17 00:00:00 2001
From: Wolfgang Welz <welzwo@gmail.com>
Date: Mon, 17 Feb 2020 16:17:30 +0100
Subject: [PATCH] Remove docker specific config (#245)

---
 Dockerfile         |  3 +--
 docker.config.json | 34 ----------------------------------
 2 files changed, 1 insertion(+), 36 deletions(-)
 delete mode 100644 docker.config.json

diff --git a/Dockerfile b/Dockerfile
index 381f8824..fda2f888 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 ff931575..00000000
--- 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": []
-  }
-}
-- 
GitLab