Skip to content
Snippets Groups Projects
Unverified Commit 629d6b5e authored by Wolfgang Welz's avatar Wolfgang Welz Committed by GitHub
Browse files

Fix: Use docker specific config (#100)

* Use docker specific config

* Format JSON
parent da29a7c2
No related branches found
No related tags found
No related merge requests found
......@@ -31,5 +31,7 @@ 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
ENTRYPOINT ["./goshimmer"]
......@@ -3,6 +3,7 @@ version: "3"
services:
goshimmer:
network_mode: host
image: iotaledger/goshimmer
build:
context: ./
......@@ -15,4 +16,3 @@ services:
- "14666:14666/tcp"
- "14626:14626/udp"
- "14626:14626/tcp"
command: "--node.disablePlugins statusscreen"
{
"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",
"shimmer.log"
],
"DisableEvents": true
},
"node": {
"disablePlugins": [
"statusscreen"
],
"enablePlugins": []
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment