forked from Islandora-Devops/isle-dc
-
Notifications
You must be signed in to change notification settings - Fork 6
Troubleshooting
Don Richards edited this page Sep 26, 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. DO NOT USE ON A PRODUCTION SITE.
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
Check locally with make static-docker-compose.yml up
, you can add -d
after make (make -d static-dock...
) to run in debug mode.
The root directory is