Error: volume is in useError: volume is in use
The Docker volume cannot be removed because it is still mounted by a container.
Error: container is already runningYou tried to start a container that is already running.
The docker start command was issued for a container that is already in the running state. The container does not need to be started again.
This is usually harmless. Check container status: docker ps. If you want to restart it: docker restart container. If you need a fresh instance: docker stop container && docker start container.
Error: volume is in useThe Docker volume cannot be removed because it is still mounted by a container.
Error: no space left on deviceThe Docker host has run out of disk space.
Error: network not foundThe specified Docker network does not exist.
Error: port is already allocatedThe host port you are trying to bind is already in use by another process or container.
Exit Code 128The container process received an invalid exit signal.
Error: Pool overlaps with other networkThe IP address range for a new Docker network conflicts with an existing network.