AdrienPoupa / docker-compose-nas

Simple Docker Compose NAS featuring Sonarr, Radarr, Prowlarr, Jellyfin, qBittorrent, PIA VPN and Traefik with SSL support
891 stars 117 forks source link

How does this compare to Saltbox (aka Cloudbox)? #53

Closed Sire closed 5 months ago

Sire commented 5 months ago

Newbie question, has anyone tried Saltbox (was previously called Cloudbox) and can compare these two? They both seem equally popular and quite similar.

AdrienPoupa commented 5 months ago

Hi there! While the goal of both our projects is very similar, the technical strategies to achieve it differ wildly.

Saltbox makes heavy use of Ansible and seems to use it to generate a Docker compose file on demand. It also uses a subdomain per application. There's more applications available to choose from (Plex, Tautulli, and many others).

On the other hand, Docker Compose NAS is a "simple" Docker-Compose file that can be run directly with a docker compose up -d without needing external dependencies such as Ansible. It is configurable but more opinionated about which applications are available and how they are setup (using subfolders when it is possible for example).

I'm obviously biased, but I see Docker-Compose NAS as a simpler project given everything is explicitly declared in the Compose file and there is no templating/Ansible automation going on. However it has fewer applications available so that may be a limiting point.

I hope that answers your question!

Sire commented 5 months ago

Thanks for the detailed comparison!