Skip to content

Commit 9310e4b

Browse files
authored
Merge pull request #23 from jfroment/dev
Release v1.5
2 parents 23beb81 + d137715 commit 9310e4b

File tree

6 files changed

+8
-5
lines changed

6 files changed

+8
-5
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ seedbox and personal media server.
1717
| Ombi | ombi.yourdomain.com | [linuxserver/ombi](https://hub.docker.com/r/linuxserver/ombi) | *latest* | Plex content requests |
1818
| Overseerr | overseerr.yourdomain.com | [linuxserver/overseerr](https://hub.docker.com/r/linuxserver/overseerr) | *latest* | Plex content requests |
1919
| 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 |
2121
| JDownloader | jdownloader.yourdomain.com | [jlesage/jdownloader-2](https://hub.docker.com/r/jlesage/jdownloader-2)| *latest* | Direct downloader |
2222
| Tautulli (plexPy) | tautulli.yourdomain.com | [linuxserver/tautulli](https://hub.docker.com/r/linuxserver/tautulli) | *latest* | Plex stats and admin|
2323
| Tdarr | tdarr.yourdomain.com | [haveagitgat/tdarr](https://hub.docker.com/r/haveagitgat/tdarr) | *latest* | Re-encode files |

services/jdownloader.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ services:
22
jdownloader:
33
image: jlesage/jdownloader-2
44
container_name: jdownloader
5-
restart: unless-stopped
5+
restart: always
66
volumes:
77
- configjdownloader:/config
88
- downloads:/output

services/nextcloud.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ services:
22
nextcloud-db:
33
image: mariadb:10
44
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
66
restart: always
77
environment:
88
- MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}

services/prowlarr.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
prowlarr:
3-
image: ghcr.io/linuxserver/prowlarr:nightly
3+
image: ghcr.io/linuxserver/prowlarr:develop
44
container_name: prowlarr
55
restart: always
66
volumes:

update-all.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ source .env
1919
echo "${HTTP_USER}:${HTTP_PASSWORD}" > traefik/http_auth
2020

2121
# Docker-compose settings
22-
COMPOSE_HTTP_TIMEOUT=240
22+
export COMPOSE_HTTP_TIMEOUT=240
2323

2424
if [[ ! -f services.conf ]]; then
2525
echo "[$0] No services.conf file found. Copying from sample file..."

update-nextcloud.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
3+
docker exec -it nextcloud updater.phar

0 commit comments

Comments
 (0)