I have a Docker EE running on a Host with IP 172.10.100.17
. I have installed UCP using the default parameters and I have also deployed nginx container with host port 443 mapped to 443 on the container.
docker run -it --rm --name ucp -v /var/run/docker.sock:/var/run/docker.sock docker/ucp install --host-address 172.10.100.17 --interactive
docker run -it -d --name ngx -p 80:80 -p 443:443 nginx
- Can UCP and Nginx co-exist with both serving at
https://172.10.100.17
? - What is the best practice for deploying UCP when my primary goal is to have nginx/apache serving on Host IP?
- Would it be recommended to set a static IP to nginx container/service?
(Note:https is enabled on nginx)