-
Notifications
You must be signed in to change notification settings - Fork 70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using names instead of ips #11
Comments
You could be right, but in the end it comes down to what is the purpose of the tutorial If I remember correctly, a specific - "KEYROCK_URL=http://localhost"
- "KEYROCK_IP_ADDRESS=http://172.18.1.5" If a At a minimum, I've recently added a disclaimer at the head of the As I said, I'm not quite sure what the right solution is here and I'm open to suggestions, so what do you think? Any good ideas? Of course in any non-toy architectural system both |
Hi,
I noticed some parts of the tutorial work with assumption on ips, specifically 127.18.x.x
In my case,
./service start
would fail with the messageERROR: Pool overlaps with other one on this address space
. The problem was that the subnet ip was overlapping with the one docker gave to thedocker_gwbridge
. This might happen to people that previously testeddocker swarm
.For the records, I had to disable the docker swarm mode of my host (I was not using it) with
docker swarm leave --force
and thendocker network prune
to get thedocker_gwbridge
network deleted.So, given that the tutorial seems to be using the same network, wouldn't it be a bit safer for example to use service names instead?
The text was updated successfully, but these errors were encountered: