Windows
Sometimes your Docker or your worker may encounter issues and fail to run smoothly. In such cases, you're often advised in the #Support channel to remove the containers and re- run the worker command.

# Stop all running containers docker stop $(docker ps -aq) # Remove all containers docker rm $(docker ps -aq) # Remove all images docker rmi $(docker images -aq) # Run the worker command # [ USE YOUR ACTUAL WORKER COMMAND ]
Last updated


