Like in docker-compose is it possible to assign static IP address in blockade? Looks like, blockade is assigning IP address at later stage in the lifecycle of containers (not sure), when I use
docker run --net mynet123 --ip 20.21.10.100 -it c197324bf9c3 -p 52204:52204
docker run -p 52205:52205 --net mynet123 --ip 20.21.10.101 -it c197324bf9c3
The nodes form a cluster as I expected. With blockade the application is not starting up.
In my case, I have to give the IP address of docker in the config file of my application when building an image itself.
Like in docker-compose is it possible to assign static IP address in blockade? Looks like, blockade is assigning IP address at later stage in the lifecycle of containers (not sure), when I use
docker run --net mynet123 --ip 20.21.10.100 -it c197324bf9c3 -p 52204:52204 docker run -p 52205:52205 --net mynet123 --ip 20.21.10.101 -it c197324bf9c3
The nodes form a cluster as I expected. With blockade the application is not starting up.
In my case, I have to give the IP address of docker in the config file of my application when building an image itself.