1
使用Jason Wilder's NGINX-Proxy,是否可以將兩組或多組虛擬主機綁定到一個容器上的各個端口?NGINX-Proxy:在一個容器上運行綁定到不同虛擬主機的多個端口
我在想什麼:
# start the reverse proxy
docker run -d -p 80:80 -v /var/run/docker.sock:/tmp/docker.sock jwilder/nginx-proxy
# start a first container for http://tutum.test.local
docker run -d -e "VIRTUAL_HOST=tutum.test.local" -e "VIRTUAL_HOST=tutum.school.nationwide" -p 80:80 -p 3000:3000 tutum/hello-world
當第一虛擬主機可以鏈接到代碼在端口3000上運行的套接字,而第二個虛擬主機可以連接到8080端口和處理定期的API調用。
是否有可能或者我會更好地將套接字分解爲單獨的碼頭集裝箱?