Error with nginx Plugin for Docker Compose

0

I have a problem when lifting the service kobo-docker_nginx_1 in a virtual machine with Ubuntu 16.04. The following error appears when trying to execute the docker-compose up command:

 for kobo-docker_nginx_1 
 Cannot start service nginx: 
 driver failed programming external connectivity on endpoint kobo- 
 docker_nginx_1 
 (349f2f01b33f4b0c4974658b42faf9738ac52208fc65a3d33bb1a5edd809244b): 
 Error starting userland proxy: listen tcp 0.0.0.0:8005: bind: address 
 already in use

I am running the ssh virtual machine on Hiper-V on a Windows Server 2012 R2 shared server ... thank you very much

    
asked by Erick Echeverry Garcia 05.07.2018 в 16:22
source

1 answer

0

The "kobo-docker_nginx_1" container could not be raised correctly since some other process is using the "0.0.0.0:8005" port.

To solve this you would have to kill that process with this the port is released and then again you execute the command "docker-compose up -d".

Before killing the process you have to verify which is to avoid further inconveniences.

I leave you a very good tutorial instead of the port "3000" you would have to apply it with the port "8005"

Linux: Identifying which process is using a port

    
answered by 08.07.2018 в 22:24