forked from Islandora-Devops/isle-dc
-
Notifications
You must be signed in to change notification settings - Fork 6
Troubleshooting
Don Richards edited this page Jul 22, 2022
·
5 revisions
git checkout codebase
- Check if the docker-compose.yml is empty, remove it if so.
- Check if there is a .docker-compose.yml file (leading dot) and remove it.
- Run
make up
to rebuild the docker-compose.yml file
sudo systemctl restart docker
WARNING!!! This will kill all docker storage and anything container including containers not related to this repo. EVERYTHING and I mean literally everything related to Docker.
docker kill $(docker ps -q) ; docker rm $(docker ps -a -q) ; docker rmi $(docker images -q) ; docker system prune --volumes -a -f ; docker network prune -f && docker network create gateway