Juvelle Mendes
Juvelle Mendes

Reputation: 121

Error response from daemon: Ports are not available

I am getting the following error while trying to install report portal on my local :

Error response from daemon:

Ports are not available: exposing port TCP 0.0.0.0:8080 -> 0.0.0.0:0: listen tcp 0.0.0.0:8080: bind: Only one usage of each socket address (protocol/network address/port) is normally permitted.

Tried to create an image using :

docker-compose -p report portal up -d --force-recreate

Error message :

Error response from daemon:

Ports are not available: exposing port TCP 0.0.0.0:8080 -> 0.0.0.0:0: listen tcp 0.0.0.0:8080: bind: Only one usage of each socket address (protocol/network address/port) is normally permitted.

Upvotes: 0

Views: 604

Answers (1)

avarabyeu
avarabyeu

Reputation: 736

The message says your port 8080 is already taken by another process. You could either make sure 8080 is available or re-configure the ReportPortal to use another port by replacing it here

Upvotes: 1

Related Questions