Skip to content

Removing Cloudbox Apps

Chaz Larson edited this page Feb 15, 2021 · 1 revision

Perhaps you want to remove one of the apps that cloudbox installed for you.

Maybe you're not planning to ever use rutorrent, or you want to install it fresh, or some other reason.

This page describes doing this for something that was installed as a docker container.

THIS MAY DESTROY DATA; BACK UP FIRST IF YOU ARE UNSURE WHAT YOU'RE DOING

First, stop and remove the docker container:

docker stop CONTAINER_NAME
docker rm CONTAINER_NAME

At this point, the container has been removed; it's not longer running, no longer consuming CPU or RAM resources.

Its configuration is still on disk in /opt, however.

If you reinstall using the standard cloudbox install mechanism, it will come back up with your existing configuration.

If you want to remove that configuration for whatever reason [will never use it, want to start fresh, etc.]:

rm -fr /opt/CONTAINER_NAME

Now it's as if that app was never installed on this machine.

Now you can reinstall the container using the standard cloudbox tag:

cd ~/cloudbox
sudo ansible-playbook cloudbox.yml --tags TAG_GOES_HERE

or [for develop branch]

cb install TAG_GOES_HERE

This will create a brand new /opt/CONTAINERNAME

The same concepts apply to community apps.

If you're not planning to reinstall and want to save a tiny bit of disk space [or you want to be sure you pull a new image when you reinstall]:

docker image prune

That will delete the local copy of the image used to create the now-deleted container.

Basics

  1. Introduction
  2. Cloudbox Install Types
  3. Cloudbox Paths
  4. Accessing Cloudbox Apps

Prerequisites

  1. Overview
  2. Presumptions
  3. Server
  4. Domain Name
  5. Cloudflare
  6. Cloud Storage
  7. Plex / Emby - Account
  8. Usenet vs. BitTorrent

Install Cloudbox

Cloudbox
  1. Overview
  2. Dependencies (Choose only one of these)
  3. Settings
  4. Preinstall (Choose only one of these)
  5. SSH
  6. Ansible Vault
  7. Rclone
  8. Cloudbox (Choose only one of these)
  9. Application Setup
    1. NZBGet
    2. ruTorrent
    3. NZBHydra2
    4. Jackett
    5. Plex Media Server
    6. Plex Autoscan
    7. Sonarr
    8. Radarr
    9. Lidarr
    10. PlexPy (Tautulli)
    11. Ombi
    12. Portainer
    13. Organizr
  10. Next Steps

Install Feederbox / Mediabox

Feederbox (do this first)
  1. Overview
  2. Dependencies
  3. Settings
  4. Preinstall
  5. SSH
  6. Ansible Vault
  7. Rclone
  8. Feederbox (Choose only one of these)
  9. Application Setup
    1. NZBGet
    2. ruTorrent
    3. NZBHydra2
    4. Jackett
    5. Sonarr
    6. Radarr
    7. Lidarr
    8. Portainer
    9. Organizr
  10. Next Steps

Mediabox
  1. Overview
  2. Dependencies
  3. Settings
  4. Preinstall
  5. SSH
  6. Ansible Vault
  7. Rclone
  8. Mediabox (Choose only one of these)
  9. Application Setup
    1. Feeder Mount
    2. Plex Media Server
    3. Plex Autoscan
    4. PlexPy (Tautulli)
    5. Ombi
  10. Next Steps

Recommended Reading

Backup and Restore

More Information

Advanced Configuration

Experimental

Extras

Misc

Community-Submitted

See Community Wiki.

Reference

Troubleshooting

Links

Clone this wiki locally