To completely uninstall a BRIDGE that has been installed with Docker, you need to remove

  • the Docker container
  • the Docker volumes
  • the Docker image

Step 1: Removing the Docker Container and the Volumes

  1. Go to the folder where you have stored your docker-compose.yml file.
  2. Drop the BRIDGE Docker container and its related volumes with

    docker-compose down -v

    Option -v irreversibly removes the BRIDGE data directory of the BRIDGE installation. If you only want to remove the Docker container, use

    docker-compose down

Step 2: Remove the Docker Image

Remove the BRIDGE Docker image using

docker image rm bridge:<version>

If you have kept multiple images of the BRIDGE, you need to remove them one by one, specifying the version.

On this Page:

  • No labels