A home media server build with docker-compose
docker_configs
├── transmission
├── qBitorrent
├── sonarr
├── ...
data
├── downloads
│ ├── movies
│ ├── music
│ └── tv
└── media
├── movies
├── music
└── tv
docker_configs
: all of the configs for those docker servicesdata
: main folderdownloads
: the main download target foldermedia
: hardlink folder for everything that doing media stuff
PUID
: user idGUID
: user group idDOCKER_CONFIG
: theDATA
: the main data folder
DOCKER_CONFIG=/path/to/config DATA=/path/to/data PUID="$(id -u)" GUID="$(id -g)" docker-compose up -d