# How to reinstall

Destroy all the Docker containers and images:

{% code overflow="wrap" %}

```
docker kill $(docker ps -q) ; docker rm $(docker ps -a -q) ; docker rmi $(docker images -q)
```

{% endcode %}

Delete the edcom-install directory:

```
rm -rf edcom-install
```

Extract the installation archive and go through the usual installation process:

```
tar xzvf edcom-install.tgz
```
