Answer the question
In order to leave comments, you need to log in
When I try to start a selenoid container with new parameters, I get an error that the container already exists with the same name, how is it fixed?
There is a list of docker containers.
The selenoid container works with parameters:
"-service-startup-timeout",
"10m",
"-session-attempt-timeout",
"10m",
"-session-delete-timeout",
"5m"
Failed to start: failed to create container: Error response from daemon: Conflict. The container name "/selenoid" is already in use by container 15fc4feaaf050575eb36e73c7c3a1b156bf7adbe56c559287f97f2498b307b1a. You have to remove (or rename) that container to be able to reuse that name.
Answer the question
In order to leave comments, you need to log in
@SuperTester777
too lazy to go into the documentation?
docker container prune -f
and
docker container rm <имя>
or even
CONTAINER='имя'
docker stop $CONTAINER
ID=$(docker container ls -a| grep $CONTAINER | awk '{print $1}')
docker rm $ID
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question