This commit is contained in:
Alexandre
2022-09-04 09:56:38 +02:00
12 changed files with 26 additions and 25 deletions

View File

@@ -75,12 +75,12 @@ for f in */; do
BYDATE=$(jq -r .dockerhub_by_date updater.json) BYDATE=$(jq -r .dockerhub_by_date updater.json)
# Number of elements to check in dockerhub # Number of elements to check in dockerhub
if grep -Fxq "dockerhub_list_size" updater.json; then if grep -Fxq "dockerhub_list_size" updater.json; then
LISTSIZE=$(jq -r .dockerhub_list_size updater.json) LISTSIZE=$(jq -r .dockerhub_list_size updater.json)
else else
LISTSIZE=100 LISTSIZE=100
fi fi
#Skip if paused #Skip if paused
if [[ "$PAUSED" = true ]]; then bashio::log.magenta "... $SLUG addon updates are paused, skipping"; continue; fi if [[ "$PAUSED" = true ]]; then bashio::log.magenta "... $SLUG addon updates are paused, skipping"; continue; fi
@@ -111,7 +111,7 @@ for f in */; do
sort -V | sort -V |
tail -n 1 tail -n 1
) )
[ "${BYDATE}" = true ] && [ "${BYDATE}" = true ] &&
LASTVERSION=$( LASTVERSION=$(
curl -f -L -s --fail "https://hub.docker.com/v2/repositories/${DOCKERHUB_REPO}/${DOCKERHUB_IMAGE}/tags/?page_size=$LISTSIZE" | curl -f -L -s --fail "https://hub.docker.com/v2/repositories/${DOCKERHUB_REPO}/${DOCKERHUB_IMAGE}/tags/?page_size=$LISTSIZE" |
@@ -122,7 +122,7 @@ for f in */; do
sort -V | sort -V |
tail -n 1 tail -n 1
) && \ ) && \
DATE=$( DATE=$(
curl -f -L -s --fail "https://hub.docker.com/v2/repositories/${DOCKERHUB_REPO}/${DOCKERHUB_IMAGE}/tags/?page_size=$LISTSIZE" | curl -f -L -s --fail "https://hub.docker.com/v2/repositories/${DOCKERHUB_REPO}/${DOCKERHUB_IMAGE}/tags/?page_size=$LISTSIZE" |
jq '.results[] | select(.name==$LASTVERSION) | .last_updated' -r --arg LASTVERSION "$LASTVERSION" jq '.results[] | select(.name==$LASTVERSION) | .last_updated' -r --arg LASTVERSION "$LASTVERSION"
) && \ ) && \

View File

@@ -1,6 +1,6 @@
{ {
"dockerhub_list_size": 2,
"dockerhub_by_date": true, "dockerhub_by_date": true,
"dockerhub_list_size": 2,
"github_fulltag": "false", "github_fulltag": "false",
"last_update": "2021-12-17", "last_update": "2021-12-17",
"repository": "alexbelgium/hassio-addons", "repository": "alexbelgium/hassio-addons",

View File

@@ -18,12 +18,12 @@
"ssl": false "ssl": false
}, },
"ports": { "ports": {
"3000/tcp": 3000, "22/tcp": 2222,
"22/tcp": 2222 "3000/tcp": 3000
}, },
"ports_description": { "ports_description": {
"3000/tcp": "Http web interface", "22/tcp": "Ssh",
"22/tcp": "Ssh" "3000/tcp": "Http web interface"
}, },
"schema": { "schema": {
"certfile": "str", "certfile": "str",

View File

@@ -16,6 +16,7 @@
"SSL_KEY_NAME": "tls.key", "SSL_KEY_NAME": "tls.key",
"TZ": "Etc/UTC" "TZ": "Etc/UTC"
}, },
"host_network": true,
"image": "ghcr.io/alexbelgium/omada-{arch}", "image": "ghcr.io/alexbelgium/omada-{arch}",
"map": [ "map": [
"config:rw", "config:rw",
@@ -42,7 +43,6 @@
"8088/tcp": "web interface http", "8088/tcp": "web interface http",
"8843/tcp": "portal https" "8843/tcp": "portal https"
}, },
"host_network": true,
"slug": "omada", "slug": "omada",
"url": "https://github.com/alexbelgium/hassio-addons", "url": "https://github.com/alexbelgium/hassio-addons",
"version": "5.5-chromium-amd64-2022-09-02", "version": "5.5-chromium-amd64-2022-09-02",

View File

@@ -16,7 +16,7 @@
ARG BUILD_FROM ARG BUILD_FROM
ARG BUILD_VERSION ARG BUILD_VERSION
ARG BUILD_UPSTREAM="4.4.5-r0-ls213" ARG BUILD_UPSTREAM="4.4.3.1-r1-ls208"
FROM ${BUILD_FROM}-$BUILD_UPSTREAM FROM ${BUILD_FROM}-$BUILD_UPSTREAM
################## ##################

View File

@@ -115,5 +115,5 @@
}, },
"slug": "qbittorrent", "slug": "qbittorrent",
"url": "https://github.com/alexbelgium/hassio-addons", "url": "https://github.com/alexbelgium/hassio-addons",
"version": "4.4.5-r0-ls213" "version": "4.4.3.1-r1-ls208"
} }

View File

@@ -10,7 +10,7 @@ mkdir -p /config/qBittorrent
# copy default config # copy default config
if [ ! -f /config/qBittorrent/qBittorrent.conf ]; then if [ ! -f /config/qBittorrent/qBittorrent.conf ]; then
cp /defaults/qBittorrent.conf /config/qBittorrent/qBittorrent.conf cp /defaults/qBittorrent.conf /config/qBittorrent/qBittorrent.conf
fi fi
cd /config/qBittorrent/ || true cd /config/qBittorrent/ || true

View File

@@ -110,7 +110,7 @@ else
# Ensure no redirection by removing the direction tag # Ensure no redirection by removing the direction tag
if [ -f "$QBT_CONFIG_FILE" ]; then if [ -f "$QBT_CONFIG_FILE" ]; then
sed -i '/Interface/d' "$QBT_CONFIG_FILE" sed -i '/Interface/d' "$QBT_CONFIG_FILE"
fi fi
bashio::log.info "Direct connection without VPN enabled" bashio::log.info "Direct connection without VPN enabled"

View File

@@ -1,9 +1,10 @@
{ {
"paused": true,
"github_fulltag": "true", "github_fulltag": "true",
"last_update": "01-09-2022", "last_update": "01-09-2022",
"repository": "alexbelgium/hassio-addons", "repository": "alexbelgium/hassio-addons",
"slug": "qbittorrent", "slug": "qbittorrent",
"source": "github", "source": "github",
"upstream_repo": "linuxserver/docker-qbittorrent", "upstream_repo": "linuxserver/docker-qbittorrent",
"upstream_version": "4.4.5-r0-ls213" "upstream_version": "4.4.3.1-r1-ls208"
} }

View File

@@ -8,9 +8,9 @@
"description": "recipe manager", "description": "recipe manager",
"environment": { "environment": {
"DB_ENGINE": "django.db.backends.sqlite3", "DB_ENGINE": "django.db.backends.sqlite3",
"TRUSTED_PROXIES": "**",
"DEBUG": "1", "DEBUG": "1",
"POSTGRES_DB": "/config/addons_config/tandoor_recipes/recipes.db" "POSTGRES_DB": "/config/addons_config/tandoor_recipes/recipes.db",
"TRUSTED_PROXIES": "**"
}, },
"ingress": true, "ingress": true,
"map": [ "map": [

View File

@@ -5,10 +5,10 @@
# TEST # # TEST #
######## ########
if [ -f /config/tandooringress.conf ]; then if [ -f /config/tandooringress.conf ]; then
echo "running test file" echo "running test file"
rm /etc/nginx/servers/ingress.conf rm /etc/nginx/servers/ingress.conf
cp /config/tandooringress.conf /etc/nginx/servers/ingress.conf cp /config/tandooringress.conf /etc/nginx/servers/ingress.conf
chmod 775 /etc/nginx/servers/ingress.conf chmod 775 /etc/nginx/servers/ingress.conf
fi fi
################# #################

View File

@@ -7,8 +7,8 @@
"codenotary": "alexandrep.github@gmail.com", "codenotary": "alexandrep.github@gmail.com",
"description": "M3U Proxy for Plex DVR and Emby Live TV", "description": "M3U Proxy for Plex DVR and Emby Live TV",
"environment": { "environment": {
"XTEVE_HOME": "/data", "XTEVE_CONF": "/data/conf",
"XTEVE_CONF": "/data/conf" "XTEVE_HOME": "/data"
}, },
"map": [ "map": [
"config:rw", "config:rw",