@Cold-Egg Yes that's the repo.
The host IP is 10.0.0.10
DockStation has an Info section for the running container, and this shows two sections 'NetworkSettings' and 'Networks'; In 'NetworkSettings' the settings for Gateway and IPAddress (amongst others) are empty, but in 'Networks' Gateway is set to 172.18.0.1 and IPAddress is 172.18.0.2 - don't know where 172.18.0.x comes from!
Do I need to set environmental variables in docker or in docker-compose.yml?
In Windows cmd,
docker network inspect bridge
shows Gateway IP as 172.17.0.1 and
docker inspect <container id>
under network settings shows Gateway IP as 172.18.0.1 and IPAddress as 172.18.0.2 and under ports
172.18.0.2:7080 entered in a browser gives "This site can't be reached".
I think I need to map the port ...
ref
I've tried adding ports: "7080:7080" to the project's docker-compose.yml file but not suceeded in connecting to the container yet.