example: fix gitserverURL in example config

The git server needs to be accessed on localhost from the gateway and not from
the host's docker bridge address.
This commit is contained in:
Simone Gotti 2021-01-13 16:13:04 +01:00
parent e0756d6e61
commit 684216c42e
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ gateway:
webExposedURL: "http://172.17.0.1:8000" webExposedURL: "http://172.17.0.1:8000"
runserviceURL: "http://localhost:4000" runserviceURL: "http://localhost:4000"
configstoreURL: "http://localhost:4002" configstoreURL: "http://localhost:4002"
gitserverURL: "http://172.17.0.1:4003" gitserverURL: "http://localhost:4003"
web: web:
listenAddress: ":8000" listenAddress: ":8000"