♻️How to reinstall
docker kill $(docker ps -q) ; docker rm $(docker ps -a -q) ; docker rmi $(docker images -q)rm -rf edcom-installtar xzvf edcom-install.tgzLast updated
Was this helpful?
Destroy all the Docker containers and images:
docker kill $(docker ps -q) ; docker rm $(docker ps -a -q) ; docker rmi $(docker images -q)Delete the edcom-install directory:
rm -rf edcom-installExtract the installation archive and go through the usual installation process:
tar xzvf edcom-install.tgzLast updated
Was this helpful?
Was this helpful?