File tree 6 files changed +8
-5
lines changed
6 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ seedbox and personal media server.
17
17
| Ombi | ombi.yourdomain.com | [ linuxserver/ombi] ( https://hub.docker.com/r/linuxserver/ombi ) | * latest* | Plex content requests |
18
18
| Overseerr | overseerr.yourdomain.com | [ linuxserver/overseerr] ( https://hub.docker.com/r/linuxserver/overseerr ) | * latest* | Plex content requests |
19
19
| Jackett | jackett.yourdomain.com | [ linuxserver/jackett] ( https://hub.docker.com/r/linuxserver/jackett ) | * latest* | Tracker indexer |
20
- | Prowlarr | prowlarr.yourdomain.com | [ linuxserver/prowlarr] ( https://hub.docker.com/r/linuxserver/prowlarr ) | * nightly * | Tracker indexer ** (new) ** |
20
+ | Prowlarr | prowlarr.yourdomain.com | [ linuxserver/prowlarr] ( https://hub.docker.com/r/linuxserver/prowlarr ) | * develop * | Tracker indexer |
21
21
| JDownloader | jdownloader.yourdomain.com | [ jlesage/jdownloader-2] ( https://hub.docker.com/r/jlesage/jdownloader-2 ) | * latest* | Direct downloader |
22
22
| Tautulli (plexPy) | tautulli.yourdomain.com | [ linuxserver/tautulli] ( https://hub.docker.com/r/linuxserver/tautulli ) | * latest* | Plex stats and admin|
23
23
| Tdarr | tdarr.yourdomain.com | [ haveagitgat/tdarr] ( https://hub.docker.com/r/haveagitgat/tdarr ) | * latest* | Re-encode files |
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ services:
2
2
jdownloader :
3
3
image : jlesage/jdownloader-2
4
4
container_name : jdownloader
5
- restart : unless-stopped
5
+ restart : always
6
6
volumes :
7
7
- configjdownloader:/config
8
8
- downloads:/output
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ services:
2
2
nextcloud-db :
3
3
image : mariadb:10
4
4
container_name : nextcloud-db
5
- command : --transaction-isolation=READ-COMMITTED --binlog-format=ROW
5
+ command : --transaction-isolation=READ-COMMITTED --binlog-format=ROW --innodb-file-per-table=1 --skip-innodb-read-only-compressed
6
6
restart : always
7
7
environment :
8
8
- MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}
Original file line number Diff line number Diff line change 1
1
services :
2
2
prowlarr :
3
- image : ghcr.io/linuxserver/prowlarr:nightly
3
+ image : ghcr.io/linuxserver/prowlarr:develop
4
4
container_name : prowlarr
5
5
restart : always
6
6
volumes :
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ source .env
19
19
echo " ${HTTP_USER} :${HTTP_PASSWORD} " > traefik/http_auth
20
20
21
21
# Docker-compose settings
22
- COMPOSE_HTTP_TIMEOUT=240
22
+ export COMPOSE_HTTP_TIMEOUT=240
23
23
24
24
if [[ ! -f services.conf ]]; then
25
25
echo " [$0 ] No services.conf file found. Copying from sample file..."
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ docker exec -it nextcloud updater.phar
You can’t perform that action at this time.
0 commit comments