Cleanup + radarr develop (instead of nightly)
This commit is contained in:
parent
16d0dec5b4
commit
7ba52aa3e3
|
@ -10,7 +10,7 @@ seedbox and personal media server.
|
||||||
| Plex | plex.yourdomain.com | [linuxserver/plex](https://hub.docker.com/r/linuxserver/plex) | *latest* | Media Streaming |
|
| Plex | plex.yourdomain.com | [linuxserver/plex](https://hub.docker.com/r/linuxserver/plex) | *latest* | Media Streaming |
|
||||||
| Deluge | deluge.yourdomain.com | [linuxserver/deluge](https://hub.docker.com/r/linuxserver/deluge) | *latest* | Torrents downloader |
|
| Deluge | deluge.yourdomain.com | [linuxserver/deluge](https://hub.docker.com/r/linuxserver/deluge) | *latest* | Torrents downloader |
|
||||||
| Sonarr | sonarr.yourdomain.com | [linuxserver/sonarr](https://hub.docker.com/r/linuxserver/sonarr) | *preview* | TV Shows monitor |
|
| Sonarr | sonarr.yourdomain.com | [linuxserver/sonarr](https://hub.docker.com/r/linuxserver/sonarr) | *preview* | TV Shows monitor |
|
||||||
| Radarr | radarr.yourdomain.com | [linuxserver/radarr](https://hub.docker.com/r/linuxserver/radarr) | *nightly* | Movies monitor |
|
| Radarr | radarr.yourdomain.com | [linuxserver/radarr](https://hub.docker.com/r/linuxserver/radarr) | *develop* | Movies monitor |
|
||||||
| Bazarr | bazarr.yourdomain.com | [linuxserver/bazarr](https://hub.docker.com/r/linuxserver/bazarr) | *latest* | Subtitles monitor |
|
| Bazarr | bazarr.yourdomain.com | [linuxserver/bazarr](https://hub.docker.com/r/linuxserver/bazarr) | *latest* | Subtitles monitor |
|
||||||
| Lidarr | lidarr.yourdomain.com | [linuxserver/lidarr](https://hub.docker.com/r/linuxserver/lidarr) | *preview* | Music monitor |
|
| Lidarr | lidarr.yourdomain.com | [linuxserver/lidarr](https://hub.docker.com/r/linuxserver/lidarr) | *preview* | Music monitor |
|
||||||
| Jackett | jackett.yourdomain.com | [linuxserver/jackett](https://hub.docker.com/r/linuxserver/jackett) | *latest* | Tracker indexer |
|
| Jackett | jackett.yourdomain.com | [linuxserver/jackett](https://hub.docker.com/r/linuxserver/jackett) | *latest* | Tracker indexer |
|
||||||
|
@ -74,13 +74,12 @@ sudo rm -rf /opt/traefik /tmp/migration
|
||||||
Before running, please create the volumes which will be statically mapped to the ones on the host:
|
Before running, please create the volumes which will be statically mapped to the ones on the host:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
sudo su -c "mkdir /data && mkdir /data/config && mkdir /data/torrents""
|
sudo su -c "mkdir /data && mkdir /data/config && mkdir /data/torrents"
|
||||||
./init.sh
|
./init.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
Edit the `.env` file and change the variables as desired.
|
Edit the `.env` file and change the variables as desired.
|
||||||
The variables are all self-explanatory.
|
The variables are all self-explanatory.
|
||||||
Sames goes for `open-tunnel.sh` script to open a tunnel with port forwarding in order to access Plex Tools directly in your browser. (documentation needs to be updated - for now just install manually Plex Tools)
|
|
||||||
|
|
||||||
## Running & updating
|
## Running & updating
|
||||||
|
|
||||||
|
|
|
@ -101,7 +101,7 @@ services:
|
||||||
- "traefik.http.routers.sonarr.middlewares=common-auth@file"
|
- "traefik.http.routers.sonarr.middlewares=common-auth@file"
|
||||||
|
|
||||||
radarr:
|
radarr:
|
||||||
image: linuxserver/radarr:nightly
|
image: linuxserver/radarr:develop
|
||||||
container_name: radarr
|
container_name: radarr
|
||||||
restart: always
|
restart: always
|
||||||
volumes:
|
volumes:
|
||||||
|
@ -215,7 +215,7 @@ services:
|
||||||
labels:
|
labels:
|
||||||
- "traefik.enable=false"
|
- "traefik.enable=false"
|
||||||
|
|
||||||
# See init-setup-nextcloud.sh for first install
|
# See scripts/init-setup-nextcloud.sh for first install
|
||||||
nextcloud:
|
nextcloud:
|
||||||
depends_on:
|
depends_on:
|
||||||
- nextcloud-db
|
- nextcloud-db
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
# Legacy tools
|
||||||
|
|
||||||
|
These scripts were once used but not anymore. I keep them here for retro-compatibility sake.
|
|
@ -0,0 +1,3 @@
|
||||||
|
# WIP tools
|
||||||
|
|
||||||
|
Collection of scripts which are not considered stable yet.
|
Loading…
Reference in New Issue