Hi,
I can see some updates concerning docker image in the changelog section, but can't find where is the image on github...
Thanks,
Hi,
I can see some updates concerning docker image in the changelog section, but can't find where is the image on github...
Thanks,
We're not publishing Docker Images for the Early Access builds, unfortunately.
Thank you for the update.
I see it there now but I cant get it to launch even though it says running and fine.
Did you want to provide some logs or additional info about how you're launching it... or anything at all really?
valid point, I'm running docker on ubuntu. I have maker and other containers up and running fine.
I started small with the following command to get it up an running.
docker run -d -p 8080:9088 --name ignition-test inductiveautomation/ignition:8.3.0-beta1 -n docker-test -a localhost -h 8080 -s 9043
In portainer, it shows the container is up and running fine. But when I try to get to the gateway the page fails to load.
Firefox can’t establish a connection to the server 192.168.1.1:8080
I'm using unique ports and my other containers work fine. I'm sure its something I'm doing wrong but I'm struggling to find it. I'm not sure which logs to provide and it appears that all is good.
I can post a new thread for help.
This should probably be -p 8080:8088
.
8080 on the host, 8088 in the container.
My Maker container is using 80:8088, so I changed this one to 8080:9088. Is that not valid?
No, containers are isolated, all of your containers can bind to 8088 internally. It's the mapping from a host port that needs to be unique.
Thank you so much, that was it. I knew it was something I was doing. I was wondering how the container would know the port if I changed it, shows my ignorance with docker. Thanks again!