38 Commits

Author SHA1 Message Date
Alexandre
9d052e7eb3 Adjust joplin migration repair timestamp 2025-12-28 23:31:15 +01:00
Alexandre
77b01d9491 Fix joplin migration for notifications table 2025-12-28 23:24:24 +01:00
github-actions
ab2f8b7221 GitHub bot: changelog 2025-12-28 21:26:41 +00:00
Alexandre
bbd2f8cd31 Bump Bitwarden version to 1.35.0-6 2025-12-28 22:20:50 +01:00
Alexandre
64a07ec919 Update base image versions in build.yaml 2025-12-28 22:20:15 +01:00
Alexandre
6cc5a6e20d Change base image version in Dockerfile 2025-12-28 22:19:39 +01:00
Alexandre
3fb8545216 Merge pull request #2312 from alexbelgium/codex/fix-vaultwarden-glibc-version-issue
Update Bitwarden base to Debian 15 and bump add-on version
2025-12-28 22:16:34 +01:00
Alexandre
2a8eb5cbb9 Update bitwarden base image and version 2025-12-28 22:11:37 +01:00
github-actions
40c8eaa80f GitHub bot: changelog 2025-12-28 21:05:29 +00:00
Alexandre
1c6727a5ba Update config.yaml 2025-12-28 21:58:29 +01:00
Alexandre
33e6e568af Update Dockerfile 2025-12-28 21:58:22 +01:00
GitHub Actions
f364dabdd1 Revert 'Update config.yaml' [nobuild] 2025-12-28 20:57:13 +00:00
Alexandre
7c1078ee1c Update config.yaml 2025-12-28 21:53:52 +01:00
Alexandre
9cfd7d2a08 Remove Nginx installation and update MODULES
Removed Nginx installation from Dockerfile and updated MODULES argument.
2025-12-28 21:53:44 +01:00
Alexandre
96117bea2b Update Bitwarden version to 1.35.0-3 2025-12-28 21:52:28 +01:00
Alexandre
eeb375cdc1 Update Dockerfile 2025-12-28 21:52:10 +01:00
github-actions
3a4f77651c GitHub bot: changelog 2025-12-28 20:47:51 +00:00
Alexandre
1f04f9301b Update config.yaml 2025-12-28 21:39:49 +01:00
Alexandre
dfc8d9fc4d Update version format in config.yaml 2025-12-28 21:39:41 +01:00
Alexandre
e77cc83bcd Update Dockerfile 2025-12-28 21:39:28 +01:00
Alexandre
5ffae75c39 nobuild 2025-12-28 21:38:50 +01:00
Alexandre
4a412b7346 Update config.yaml 2025-12-28 21:37:15 +01:00
Alexandre
5e7c047bd3 Update Dockerfile for latest Vaultwarden and dependencies
Updated Dockerfile to use the latest Vaultwarden image and removed specific versioning for dependencies.
2025-12-28 21:35:58 +01:00
GitHub Actions
fedf7ee666 Revert 'Update config.yaml' [nobuild] 2025-12-28 20:33:51 +00:00
Alexandre
fca157990c Update config.yaml 2025-12-28 21:30:50 +01:00
Alexandre
94d73f8f76 new version nobuild 2025-12-28 21:30:03 +01:00
GitHub Actions
ceae0d119d Revert 'Updater bot : ente updated to 4.4.15' [nobuild] 2025-12-28 19:18:40 +00:00
GitHub Actions
b407fb6fa3 Revert 'restore bitwarden' [nobuild] 2025-12-28 19:16:39 +00:00
Alexandre
0c11a1091f restore bitwarden 2025-12-28 20:13:40 +01:00
github-actions
6c582f36ea GitHub bot: changelog 2025-12-28 19:10:34 +00:00
alexbelgium
afe5b92613 Updater bot : zzz_archived_bitwarden updated to 1.35.0 2025-12-28 20:03:13 +01:00
alexbelgium
6e1c094895 Updater bot : social_to_mealie updated to 1.1.0 2025-12-28 20:01:49 +01:00
alexbelgium
f603687a93 Updater bot : seafile updated to 12.0.14 2025-12-28 20:01:42 +01:00
alexbelgium
c89d650e98 Updater bot : linkwarden updated to 2.13.5 2025-12-28 20:00:23 +01:00
alexbelgium
2b8b8f2f89 Updater bot : jackett updated to 0.24.590 2025-12-28 19:59:59 +01:00
alexbelgium
03a4177f69 Updater bot : immich_cuda updated to 2.4.1 2025-12-28 19:59:44 +01:00
alexbelgium
a12a3c8259 Updater bot : filebrowser_quantum updated to 1.2.0 2025-12-28 19:59:11 +01:00
alexbelgium
1305dbfd18 Updater bot : ente updated to 4.4.15 2025-12-28 19:59:03 +01:00
61 changed files with 245 additions and 127 deletions

View File

@@ -1,3 +1,14 @@
## 1.35.0-6 (28-12-2025)
- Minor bugs fixed
## 1.35.0-4 (28-12-2025)
- Minor bugs fixed
## 1.35.0-2 (28-12-2025)
- Minor bugs fixed
## description: Deprecated - please use community version 1.35.0 (28-12-2025)
- Minor bugs fixed
## 1.35.0 (28-12-2025)
- Update to latest version from dani-garcia/bitwarden_rs (changelog : https://github.com/dani-garcia/bitwarden_rs/releases)
- The Home Assistant project has deprecated support for the armv7, armhf and i386 architectures. Support wil be fully dropped in the upcoming Home Assistant 2025.12 release
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.

View File

@@ -14,18 +14,40 @@
# 1 Build Image #
#################
ARG BUILD_FROM=ghcr.io/hassio-addons/debian-base/amd64:7.1.0
ARG BUILD_VERSION
ARG BUILD_UPSTREAM="1.34.3"
FROM "vaultwarden/server:${BUILD_UPSTREAM}" as vaultwarden
ARG BUILD_FROM=ghcr.io/hassio-addons/debian-base:9.1.0
###############################################################################
# Get prebuild containers from Vaultwarden
###############################################################################
FROM "vaultwarden/server:latest" AS vaultwarden
###############################################################################
# Build the actual add-on.
###############################################################################
# hadolint ignore=DL3006
FROM ${BUILD_FROM}
# Set shell
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
# Get the Bitwarden from official images
COPY --from=vaultwarden /vaultwarden /opt/vaultwarden
#COPY --from=vaultwarden /Rocket.toml /opt/Rocket.toml
COPY --from=vaultwarden /web-vault /opt/web-vault
RUN \
apt-get update \
\
&& apt-get install -y --no-install-recommends \
libmariadb-dev-compat \
libpq5 \
nginx \
sqlite3 \
&& apt-get clean \
&& rm -f -r \
/etc/nginx \
\
&& mkdir -p /var/log/nginx \
&& touch /var/log/nginx/error.log
##################
# 2 Modify Image #
##################
@@ -42,23 +64,22 @@ ENV S6_CMD_WAIT_FOR_SERVICES=1 \
# Add rootfs
COPY rootfs/ /
RUN chmod +x /etc/s6-overlay/s6-rc.d/*/run
# Uses /bin for compatibility purposes
# hadolint ignore=DL4005
RUN if [ ! -f /bin/sh ] && [ -f /usr/bin/sh ]; then ln -s /usr/bin/sh /bin/sh; fi && \
if [ ! -f /bin/bash ] && [ -f /usr/bin/bash ]; then ln -s /usr/bin/bash /bin/bash; fi
# Modules
ARG MODULES="00-banner.sh 01-custom_script.sh 00-deprecated.sh"
ARG MODULES="00-banner.sh 01-custom_script.sh"
# Automatic modules download
ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/ha_automodules.sh" "/ha_automodules.sh"
RUN chmod 744 /ha_automodules.sh && /ha_automodules.sh "$MODULES" && rm /ha_automodules.sh
# Manual apps
ENV PACKAGES="libmariadb-dev-compat \
libpq5 \
nginx \
sqlite3"
ENV PACKAGES=""
# Automatic apps & bashio
ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/ha_autoapps.sh" "/ha_autoapps.sh"

4
bitwarden/build.yaml Normal file
View File

@@ -0,0 +1,4 @@
---
build_from:
aarch64: ghcr.io/hassio-addons/debian-base/aarch64:9.1.0
amd64: ghcr.io/hassio-addons/debian-base/amd64:9.1.0

View File

@@ -1,12 +1,12 @@
arch:
- aarch64
- amd64
description: Deprecated - please use community version
description: Open source password management solution
image: ghcr.io/alexbelgium/vaultwarden-{arch}
init: false
map:
- ssl
name: zzz_archived - Vaultwarden
name: Vaultwarden
options:
env_vars: []
certfile: fullchain.pem
@@ -26,8 +26,7 @@ schema:
request_size_limit: int?
ssl: bool
slug: bitwarden
stage: deprecated
udev: true
url: https://github.com/alexbelgium/hassio-addons/tree/master/bitwarden
version: 1.34.3
version: 1.35.0-6
webui: "[PROTO:ssl]://[HOST]:[PORT:7277]"

View File

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@@ -4,5 +4,3 @@ server_name $hostname;
add_header X-Content-Type-Options nosniff;
add_header X-XSS-Protection "1; mode=block";
add_header X-Robots-Tag none;
client_max_body_size %%max_body_size%%;

View File

@@ -0,0 +1,8 @@
ssl_protocols TLSv1.2 TLSv1.3;
ssl_prefer_server_ciphers off;
ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384;
ssl_session_timeout 10m;
ssl_session_cache shared:SSL:10m;
ssl_session_tickets off;
ssl_stapling on;
ssl_stapling_verify on;

View File

@@ -0,0 +1,3 @@
upstream backend {
server 127.0.0.1:80;
}

View File

@@ -27,11 +27,7 @@ events {
http {
include /etc/nginx/includes/mime.types;
log_format homeassistant '[$time_local] $status '
'$http_x_forwarded_for($remote_addr) '
'$request ($http_user_agent)';
access_log /proc/1/fd/1 homeassistant;
access_log off;
client_max_body_size 4G;
default_type application/octet-stream;
gzip on;

View File

@@ -12,12 +12,4 @@ server {
proxy_pass http://backend;
}
location /notifications/hub {
proxy_pass http://wsbackend;
}
location /notifications/hub/negotiate {
proxy_pass http://backend;
}
}

View File

@@ -8,12 +8,4 @@ server {
proxy_pass http://backend;
}
location /notifications/hub {
proxy_pass http://wsbackend;
}
location /notifications/hub/negotiate {
proxy_pass http://backend;
}
}

View File

@@ -1,13 +1,11 @@
#!/command/with-contenv bashio
# shellcheck shell=bash
set -e
# ==============================================================================
# Home Assistant Community Add-on: Bitwarden
# This file configures nginx
# Home Assistant Community Add-on: Vaultwarden
# This file configures NGINX
# ==============================================================================
declare certfile
declare keyfile
declare max_body_size
bashio::config.require.ssl
@@ -21,11 +19,3 @@ if bashio::config.true 'ssl'; then
else
mv /etc/nginx/servers/direct.disabled /etc/nginx/servers/direct.conf
fi
max_body_size="10M"
# Increase body size to match config
if bashio::config.has_value 'request_size_limit'; then
max_body_size=$(bashio::config 'request_size_limit')
fi
sed -i "s/%%max_body_size%%/${max_body_size}/g" \
/etc/nginx/includes/server_params.conf

View File

@@ -0,0 +1 @@
oneshot

View File

@@ -0,0 +1 @@
/etc/s6-overlay/s6-rc.d/init-nginx/run

View File

@@ -0,0 +1,26 @@
#!/command/with-contenv bashio
# ==============================================================================
# Home Assistant Community Add-on: Vaultwarden
# Take down the S6 supervision tree when Nginx fails
# ==============================================================================
declare exit_code
readonly exit_code_container=$(</run/s6-linux-init-container-results/exitcode)
readonly exit_code_service="${1}"
readonly exit_code_signal="${2}"
readonly service="NGINX"
bashio::log.info \
"Service ${service} exited with code ${exit_code_service}" \
"(by signal ${exit_code_signal})"
if [[ "${exit_code_service}" -eq 256 ]]; then
if [[ "${exit_code_container}" -eq 0 ]]; then
echo $((128 + $exit_code_signal)) > /run/s6-linux-init-container-results/exitcode
fi
[[ "${exit_code_signal}" -eq 15 ]] && exec /run/s6/basedir/bin/halt
elif [[ "${exit_code_service}" -ne 0 ]]; then
if [[ "${exit_code_container}" -eq 0 ]]; then
echo "${exit_code_service}" > /run/s6-linux-init-container-results/exitcode
fi
exec /run/s6/basedir/bin/halt
fi

View File

@@ -1,8 +1,6 @@
#!/usr/bin/with-contenv bashio
# shellcheck shell=bash
set -e
#!/command/with-contenv bashio
# ==============================================================================
# Home Assistant Community Add-on: Bitwarden
# Home Assistant Community Add-on: Vaultwarden
# Runs the Nginx daemon
# ==============================================================================
bashio::net.wait_for 80

View File

@@ -0,0 +1 @@
longrun

View File

@@ -0,0 +1,27 @@
#!/command/with-contenv bashio
# shellcheck shell=bash
# ==============================================================================
# Home Assistant Community Add-on: Vaultwarden
# Take down the S6 supervision tree when the server fails
# ==============================================================================
declare exit_code
readonly exit_code_container=$(</run/s6-linux-init-container-results/exitcode)
readonly exit_code_service="${1}"
readonly exit_code_signal="${2}"
readonly service="Vaultwarden"
bashio::log.info \
"Service ${service} exited with code ${exit_code_service}" \
"(by signal ${exit_code_signal})"
if [[ "${exit_code_service}" -eq 256 ]]; then
if [[ "${exit_code_container}" -eq 0 ]]; then
echo $((128 + $exit_code_signal)) > /run/s6-linux-init-container-results/exitcode
fi
[[ "${exit_code_signal}" -eq 15 ]] && exec /run/s6/basedir/bin/halt
elif [[ "${exit_code_service}" -ne 0 ]]; then
if [[ "${exit_code_container}" -eq 0 ]]; then
echo "${exit_code_service}" > /run/s6-linux-init-container-results/exitcode
fi
exec /run/s6/basedir/bin/halt
fi

View File

@@ -1,8 +1,7 @@
#!/command/with-contenv bashio
# shellcheck shell=bash
set -e
# ==============================================================================
# Home Assistant Community Add-on: Bitwarden
# Home Assistant Community Add-on: Vaultwarden
# Runs the Vaultwarden server
# ==============================================================================
declare admin_token
@@ -22,19 +21,19 @@ export ROCKET_SECRET_KEY="${secret_key}"
# Find the matching log level
if bashio::config.has_value 'log_level'; then
case "$(bashio::string.lower "$(bashio::config 'log_level')")" in
all | trace)
all|trace)
log_level="trace"
;;
debug)
log_level="debug"
;;
info | notice)
info|notice)
log_level="info"
;;
warning)
log_level="warn"
;;
error | fatal)
error|fatal)
log_level="error"
;;
off)
@@ -46,7 +45,7 @@ if bashio::config.has_value 'log_level'; then
fi
# Show admin token in the log, if config does not exist.
if ! bashio::fs.file_exists '/data/config.yaml'; then
if ! bashio::fs.file_exists '/data/config.json'; then
admin_token=$(openssl rand -base64 48)
export ADMIN_TOKEN="${admin_token}"
@@ -73,10 +72,6 @@ if bashio::config.has_value 'request_size_limit'; then
export ROCKET_LIMITS="{json=${request_size_limit}}"
fi
# Always enable Websockets
export WEBSOCKET_ENABLED=true
export WEBSOCKET_PORT=8080
# Run the Bitwarden server
bashio::log.info 'Starting the Vaultwarden server...'
cd /opt || bashio::exit.nok

View File

@@ -0,0 +1 @@
longrun

View File

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@@ -1,9 +1,9 @@
{
"last_update": "01-08-2025",
"last_update": "28-12-2025",
"paused": false,
"repository": "alexbelgium/hassio-addons",
"slug": "bitwarden",
"source": "github",
"upstream_repo": "dani-garcia/bitwarden_rs",
"upstream_version": "1.34.3"
"upstream_version": "1.35.0"
}

View File

@@ -1,3 +1,6 @@
## 1.2.0 (28-12-2025)
- Update to latest version from gtsteffaniak/filebrowser (changelog : https://github.com/gtsteffaniak/filebrowser/releases)
# Changelog
## 1.1.0

View File

@@ -110,4 +110,4 @@ schema:
slug: filebrowser_quantum
udev: true
url: https://github.com/alexbelgium/hassio-addons
version: 1.1.0
version: "1.2.0"

View File

@@ -1,10 +1,10 @@
{
"github_beta": "true",
"last_update": "20-12-2025",
"last_update": "28-12-2025",
"paused": false,
"repository": "alexbelgium/hassio-addons",
"slug": "filebrowser_quantum",
"source": "github",
"upstream_repo": "gtsteffaniak/filebrowser",
"upstream_version": "1.1.0-stable"
"upstream_version": "1.2.0"
}

View File

@@ -1,3 +1,6 @@
## 2.4.1 (28-12-2025)
- Update to latest version from imagegenius/docker-immich (changelog : https://github.com/imagegenius/docker-immich/releases)
## 2.4.1 (27-12-2025)
- Minor bugs fixed

View File

@@ -139,6 +139,6 @@ slug: immich_cuda
udev: true
url: https://github.com/alexbelgium/hassio-addons
usb: true
version: 2.4.1
version: "2.4.1"
video: true
webui: http://[HOST]:[PORT:8080]

View File

@@ -1,9 +1,9 @@
{
"github_beta": "false",
"last_update": "22-11-2025",
"last_update": "28-12-2025",
"repository": "alexbelgium/hassio-addons",
"slug": "immich",
"source": "github",
"upstream_repo": "imagegenius/docker-immich",
"upstream_version": "2.3.1"
"upstream_version": "2.4.1"
}

View File

@@ -1,4 +1,7 @@
## 0.24.590 (28-12-2025)
- Update to latest version from linuxserver/docker-jackett (changelog : https://github.com/linuxserver/docker-jackett/releases)
## 0.24.569 (27-12-2025)
- Update to latest version from linuxserver/docker-jackett (changelog : https://github.com/linuxserver/docker-jackett/releases)

View File

@@ -106,5 +106,5 @@ schema:
slug: jackett_nas
udev: true
url: https://github.com/alexbelgium/hassio-addons/tree/master/jackett
version: "0.24.569"
version: "0.24.590"
webui: http://[HOST]:[PORT:9117]

View File

@@ -1,8 +1,8 @@
{
"last_update": "27-12-2025",
"last_update": "28-12-2025",
"repository": "alexbelgium/hassio-addons",
"slug": "jackett",
"source": "github",
"upstream_repo": "linuxserver/docker-jackett",
"upstream_version": "0.24.569"
"upstream_version": "0.24.590"
}

View File

@@ -104,5 +104,5 @@ schema:
slug: joplin
udev: true
url: https://github.com/alexbelgium/hassio-addons
version: 3.5.2-2
version: 3.5.2-3
webui: "[PROTO:ssl]://[HOST]:[PORT:22300]"

View File

@@ -42,6 +42,40 @@ unlock_sqlite_migrations() {
fi
}
repair_notifications_migration_sqlite() {
local db_path="$1"
if ! command -v sqlite3 >/dev/null 2>&1; then
return 0
fi
if [[ ! -f "$db_path" ]]; then
return 0
fi
local has_notifications
has_notifications="$(sqlite3 "$db_path" "SELECT 1 FROM sqlite_master WHERE type='table' AND name='notifications' LIMIT 1;" 2>/dev/null || true)"
[[ "$has_notifications" == "1" ]] || return 0
local has_migrations
has_migrations="$(sqlite3 "$db_path" "SELECT 1 FROM sqlite_master WHERE type='table' AND name='knex_migrations' LIMIT 1;" 2>/dev/null || true)"
[[ "$has_migrations" == "1" ]] || return 0
local has_entry
has_entry="$(sqlite3 "$db_path" "SELECT 1 FROM knex_migrations WHERE name='20203012152842_notifications.js' LIMIT 1;" 2>/dev/null || true)"
[[ "$has_entry" == "1" ]] && return 0
bashio::log.warning "Notifications table exists but migration is missing; repairing knex_migrations entry."
sqlite3 "$db_path" "
PRAGMA busy_timeout=5000;
INSERT INTO knex_migrations(name, batch, migration_time)
VALUES ('20203012152842_notifications.js',
COALESCE((SELECT MAX(batch) FROM knex_migrations), 1),
CURRENT_TIMESTAMP
);
" >/dev/null 2>&1 || bashio::log.warning "Failed to repair notifications migration entry."
}
unlock_postgres_migrations() {
if ! command -v psql >/dev/null 2>&1; then
bashio::log.warning "psql not available; skipping PostgreSQL migration lock check."
@@ -81,6 +115,47 @@ unlock_postgres_migrations() {
unset PGPASSWORD
}
repair_notifications_migration_postgres() {
if ! command -v psql >/dev/null 2>&1; then
return 0
fi
if [[ -z "${POSTGRES_DATABASE:-}" || -z "${POSTGRES_USER:-}" || -z "${POSTGRES_HOST:-}" ]]; then
return 0
fi
local pg_port="${POSTGRES_PORT:-5432}"
export PGPASSWORD="${POSTGRES_PASSWORD:-}"
local has_notifications
has_notifications="$(psql -h "$POSTGRES_HOST" -p "$pg_port" -U "$POSTGRES_USER" -d "$POSTGRES_DATABASE" -Atqc \
"SELECT 1 FROM information_schema.tables WHERE table_name='notifications' LIMIT 1;" 2>/dev/null || true)"
[[ "$has_notifications" == "1" ]] || { unset PGPASSWORD; return 0; }
local has_migrations
has_migrations="$(psql -h "$POSTGRES_HOST" -p "$pg_port" -U "$POSTGRES_USER" -d "$POSTGRES_DATABASE" -Atqc \
"SELECT 1 FROM information_schema.tables WHERE table_name='knex_migrations' LIMIT 1;" 2>/dev/null || true)"
[[ "$has_migrations" == "1" ]] || { unset PGPASSWORD; return 0; }
local has_entry
has_entry="$(psql -h "$POSTGRES_HOST" -p "$pg_port" -U "$POSTGRES_USER" -d "$POSTGRES_DATABASE" -Atqc \
"SELECT 1 FROM knex_migrations WHERE name='20203012152842_notifications.js' LIMIT 1;" 2>/dev/null || true)"
[[ "$has_entry" == "1" ]] && { unset PGPASSWORD; return 0; }
bashio::log.warning "Notifications table exists but migration is missing; repairing knex_migrations entry."
psql -h "$POSTGRES_HOST" -p "$pg_port" -U "$POSTGRES_USER" -d "$POSTGRES_DATABASE" -Atqc \
"INSERT INTO knex_migrations(name, batch, migration_time)
SELECT '20203012152842_notifications.js',
COALESCE(MAX(batch), 1),
NOW()
FROM knex_migrations
WHERE NOT EXISTS (
SELECT 1 FROM knex_migrations WHERE name='20203012152842_notifications.js'
);" >/dev/null 2>&1 || bashio::log.warning "Failed to repair notifications migration entry."
unset PGPASSWORD
}
# -------------------
# Data location
# -------------------
@@ -117,9 +192,11 @@ if bashio::config.has_value 'POSTGRES_DATABASE'; then
bashio::config.has_value 'POSTGRES_HOST' && export POSTGRES_HOST="$(bashio::config 'POSTGRES_HOST')"
unlock_postgres_migrations
repair_notifications_migration_postgres
else
bashio::log.info "Using sqlite"
unlock_sqlite_migrations "$SQLITE_DATABASE"
repair_notifications_migration_sqlite "$SQLITE_DATABASE"
fi
# -------------------

View File

@@ -1,4 +1,7 @@
## 2.13.5 (28-12-2025)
- Update to latest version from linkwarden/linkwarden (changelog : https://github.com/linkwarden/linkwarden/releases)
## 2.13.4 (27-12-2025)
- Update to latest version from linkwarden/linkwarden (changelog : https://github.com/linkwarden/linkwarden/releases)

View File

@@ -45,5 +45,5 @@ schema:
STORAGE_FOLDER: str?
slug: linkwarden
url: https://github.com/alexbelgium/hassio-addons/tree/master/linkwarden
version: "2.13.4"
version: "2.13.5"
webui: "[PROTO:ssl]://[HOST]:[PORT:3000]"

View File

@@ -1,8 +1,8 @@
{
"last_update": "27-12-2025",
"last_update": "28-12-2025",
"repository": "alexbelgium/hassio-addons",
"slug": "linkwarden",
"source": "github",
"upstream_repo": "linkwarden/linkwarden",
"upstream_version": "2.13.4"
"upstream_version": "2.13.5"
}

View File

@@ -1,4 +1,7 @@
## 12.0.14 (28-12-2025)
- Update to latest version from franchetti/seafile-arm
## (23-12-2025)
- Update to latest version from franchetti/seafile-arm
- The Home Assistant project has deprecated support for the armv7, armhf and i386 architectures. Support wil be fully dropped in the upcoming Home Assistant 2025.12 release

View File

@@ -2,11 +2,11 @@
# ALEXBELGIUM'S DOCKERFILE #
#============================#
# _.------.
# _.-` ('>.-`"""-.
# _.-` ('>.-`"12.0.14""-.
# '.--'` _'` _ .--.)
# -' '-.-';` `
# ' - _.' ``'--.
# '---` .-'""`
# '---` .-'"12.0.14"`
# /`
#=== Home Assistant Addon ===#

View File

@@ -128,5 +128,5 @@ services:
slug: seafile
udev: true
url: https://github.com/alexbelgium/hassio-addons/tree/master/seafile
version: ""
version: "12.0.14"
webui: http://[HOST]:[PORT:8000]

View File

@@ -1,10 +1,10 @@
{
"github_fulltag": "true",
"last_update": "23-12-2025",
"last_update": "28-12-2025",
"paused": false,
"repository": "alexbelgium/hassio-addons",
"slug": "seafile",
"source": "dockerhub",
"upstream_repo": "franchetti/seafile-arm",
"upstream_version": ""
"upstream_version": "12.0.14"
}

View File

@@ -1,3 +1,6 @@
## 1.1.0 (28-12-2025)
- Update to latest version from GerardPolloRebozado/social-to-mealie (changelog : https://github.com/GerardPolloRebozado/social-to-mealie/releases)
## 0.1.0-5 (27-12-2025)
- Minor bugs fixed
## 0.1.0-4 (27-12-2025)

View File

@@ -1,5 +1,5 @@
name: Social to Mealie
version: 0.1.0-5
version: "1.1.0"
slug: social_to_mealie
description: Import recipes from social media directly into Mealie
url: https://github.com/alexbelgium/hassio-addons

View File

@@ -1,10 +1,10 @@
{
"dockerhub_by_date": true,
"dockerhub_list_size": 2,
"last_update": "17-05-2025",
"last_update": "28-12-2025",
"repository": "alexbelgium/hassio-addons",
"slug": "social_to_mealie",
"source": "github",
"upstream_repo": "GerardPolloRebozado/social-to-mealie",
"upstream_version": "0.1.0"
"upstream_version": "1.1.0"
}

View File

@@ -1,4 +0,0 @@
---
build_from:
aarch64: ghcr.io/hassio-addons/debian-base/aarch64:7.1.0
amd64: ghcr.io/hassio-addons/debian-base/amd64:7.1.0

View File

@@ -1,9 +0,0 @@
ssl_protocols TLSv1.2 TLSv1.3;
ssl_prefer_server_ciphers on;
ssl_ciphers ECDHE-RSA-AES256-GCM-SHA512:DHE-RSA-AES256-GCM-SHA512:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES256-SHA:DHE-RSA-AES256-SHA;
ssl_ecdh_curve secp384r1;
ssl_session_timeout 10m;
ssl_session_cache shared:SSL:10m;
ssl_session_tickets off;
ssl_stapling on;
ssl_stapling_verify on;

View File

@@ -1,7 +0,0 @@
upstream backend {
server 127.0.0.1:80;
}
upstream wsbackend {
server 127.0.0.1:8080;
}

View File

@@ -1,12 +0,0 @@
#!/command/with-contenv bashio
# ==============================================================================
# Home Assistant Community Add-on: Vaultwarden
# Take down the S6 supervision tree when Nginx fails
# ==============================================================================
if [[ "${1}" -ne 0 ]] && [[ "${1}" -ne 256 ]]; then
bashio::log.warning "NGINX crashed, halting add-on"
/run/s6/basedir/bin/halt
fi
bashio::log.info "NGINX stopped, restarting..."

View File

@@ -1,9 +0,0 @@
#!/usr/bin/execlineb -S0
# ==============================================================================
# Home Assistant Community Add-on: Bitwarden
# Take down the S6 supervision tree when Nginx fails
# ==============================================================================
if { s6-test ${1} -ne 0 }
if { s6-test ${1} -ne 256 }
s6-svscanctl -t /var/run/s6/services