Hi,
could someone tell me how would you do to deploy 2 apps on the same server using mup? My first app deployment works perfect but when I try to deploy the second I have this error
Error response from daemon: No such container: cryptarbot-frontend
docker: Error response from daemon: driver failed programming external connectivity on endpoint myapp2 (998e60614eb8cd5ccbfe91432971b80bb11dbf1913b48999205e7bb4060a20a9): Bind for 0.0.0.0:80 failed: port is already allocated.
when I run
netstat -tulpn
I have
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 10.0.3.1:53 0.0.0.0:* LISTEN 14232/dnsmasq
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 1626/sshd
tcp6 0 0 :::80 :::* LISTEN 17005/docker-proxy
tcp6 0 0 :::22 :::* LISTEN 1626/sshd
udp 0 0 10.0.3.1:53 0.0.0.0:* 14232/dnsmasq
udp 0 0 0.0.0.0:67 0.0.0.0:* 14232/dnsmasq
I am using kadirahq/meteor-up
Thanks for your help