mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-09 17:31:03 +01:00
new version nobuild
This commit is contained in:
@@ -14,18 +14,42 @@
|
|||||||
# 1 Build Image #
|
# 1 Build Image #
|
||||||
#################
|
#################
|
||||||
|
|
||||||
ARG BUILD_FROM=ghcr.io/hassio-addons/debian-base/amd64:7.1.0
|
ARG BUILD_FROM=ghcr.io/hassio-addons/debian-base:9.1.0
|
||||||
ARG BUILD_VERSION
|
###############################################################################
|
||||||
ARG BUILD_UPSTREAM="1.35.0"
|
# Get prebuild containers from Vaultwarden
|
||||||
FROM "vaultwarden/server:${BUILD_UPSTREAM}" as vaultwarden
|
###############################################################################
|
||||||
|
FROM "vaultwarden/server:1.34.3" AS vaultwarden
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
# Build the actual add-on.
|
||||||
|
###############################################################################
|
||||||
|
# hadolint ignore=DL3006
|
||||||
FROM ${BUILD_FROM}
|
FROM ${BUILD_FROM}
|
||||||
|
|
||||||
|
# Set shell
|
||||||
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
||||||
|
|
||||||
# Get the Bitwarden from official images
|
# Get the Bitwarden from official images
|
||||||
COPY --from=vaultwarden /vaultwarden /opt/vaultwarden
|
COPY --from=vaultwarden /vaultwarden /opt/vaultwarden
|
||||||
#COPY --from=vaultwarden /Rocket.toml /opt/Rocket.toml
|
|
||||||
COPY --from=vaultwarden /web-vault /opt/web-vault
|
COPY --from=vaultwarden /web-vault /opt/web-vault
|
||||||
|
|
||||||
|
# add Nginx
|
||||||
|
# hadolint ignore=DL3009
|
||||||
|
RUN \
|
||||||
|
apt-get update \
|
||||||
|
\
|
||||||
|
&& apt-get install -y --no-install-recommends \
|
||||||
|
libmariadb-dev-compat=1:11.8.3-0+deb13u1 \
|
||||||
|
libpq5=17.6-0+deb13u1 \
|
||||||
|
nginx=1.26.3-3+deb13u1 \
|
||||||
|
sqlite3=3.46.1-7 \
|
||||||
|
&& apt-get clean \
|
||||||
|
&& rm -f -r \
|
||||||
|
/etc/nginx \
|
||||||
|
\
|
||||||
|
&& mkdir -p /var/log/nginx \
|
||||||
|
&& touch /var/log/nginx/error.log
|
||||||
|
|
||||||
##################
|
##################
|
||||||
# 2 Modify Image #
|
# 2 Modify Image #
|
||||||
##################
|
##################
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
arch:
|
arch:
|
||||||
- aarch64
|
- aarch64
|
||||||
- amd64
|
- amd64
|
||||||
description: Deprecated - please use community version
|
description: Open source password management solution
|
||||||
image: ghcr.io/alexbelgium/vaultwarden-{arch}
|
image: ghcr.io/alexbelgium/vaultwarden-{arch}
|
||||||
init: false
|
init: false
|
||||||
map:
|
map:
|
||||||
- ssl
|
- ssl
|
||||||
name: zzz_archived - Vaultwarden
|
name: Vaultwarden
|
||||||
options:
|
options:
|
||||||
env_vars: []
|
env_vars: []
|
||||||
certfile: fullchain.pem
|
certfile: fullchain.pem
|
||||||
@@ -26,8 +26,7 @@ schema:
|
|||||||
request_size_limit: int?
|
request_size_limit: int?
|
||||||
ssl: bool
|
ssl: bool
|
||||||
slug: bitwarden
|
slug: bitwarden
|
||||||
stage: deprecated
|
|
||||||
udev: true
|
udev: true
|
||||||
url: https://github.com/alexbelgium/hassio-addons/tree/master/bitwarden
|
url: https://github.com/alexbelgium/hassio-addons/tree/master/bitwarden
|
||||||
version: "1.35.0"
|
version: 1.35.0
|
||||||
webui: "[PROTO:ssl]://[HOST]:[PORT:7277]"
|
webui: "[PROTO:ssl]://[HOST]:[PORT:7277]"
|
||||||
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
@@ -4,5 +4,3 @@ server_name $hostname;
|
|||||||
add_header X-Content-Type-Options nosniff;
|
add_header X-Content-Type-Options nosniff;
|
||||||
add_header X-XSS-Protection "1; mode=block";
|
add_header X-XSS-Protection "1; mode=block";
|
||||||
add_header X-Robots-Tag none;
|
add_header X-Robots-Tag none;
|
||||||
|
|
||||||
client_max_body_size %%max_body_size%%;
|
|
||||||
8
bitwarden/rootfs/etc/nginx/includes/ssl_params.conf
Normal file
8
bitwarden/rootfs/etc/nginx/includes/ssl_params.conf
Normal 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;
|
||||||
3
bitwarden/rootfs/etc/nginx/includes/upstream.conf
Normal file
3
bitwarden/rootfs/etc/nginx/includes/upstream.conf
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
upstream backend {
|
||||||
|
server 127.0.0.1:80;
|
||||||
|
}
|
||||||
@@ -27,11 +27,7 @@ events {
|
|||||||
http {
|
http {
|
||||||
include /etc/nginx/includes/mime.types;
|
include /etc/nginx/includes/mime.types;
|
||||||
|
|
||||||
log_format homeassistant '[$time_local] $status '
|
access_log off;
|
||||||
'$http_x_forwarded_for($remote_addr) '
|
|
||||||
'$request ($http_user_agent)';
|
|
||||||
|
|
||||||
access_log /proc/1/fd/1 homeassistant;
|
|
||||||
client_max_body_size 4G;
|
client_max_body_size 4G;
|
||||||
default_type application/octet-stream;
|
default_type application/octet-stream;
|
||||||
gzip on;
|
gzip on;
|
||||||
@@ -12,12 +12,4 @@ server {
|
|||||||
proxy_pass http://backend;
|
proxy_pass http://backend;
|
||||||
}
|
}
|
||||||
|
|
||||||
location /notifications/hub {
|
|
||||||
proxy_pass http://wsbackend;
|
|
||||||
}
|
|
||||||
|
|
||||||
location /notifications/hub/negotiate {
|
|
||||||
proxy_pass http://backend;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -8,12 +8,4 @@ server {
|
|||||||
proxy_pass http://backend;
|
proxy_pass http://backend;
|
||||||
}
|
}
|
||||||
|
|
||||||
location /notifications/hub {
|
|
||||||
proxy_pass http://wsbackend;
|
|
||||||
}
|
|
||||||
|
|
||||||
location /notifications/hub/negotiate {
|
|
||||||
proxy_pass http://backend;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
14
zzz_archived_bitwarden/rootfs/etc/cont-init.d/nginx.sh → bitwarden/rootfs/etc/s6-overlay/s6-rc.d/init-nginx/run
Executable file → Normal file
14
zzz_archived_bitwarden/rootfs/etc/cont-init.d/nginx.sh → bitwarden/rootfs/etc/s6-overlay/s6-rc.d/init-nginx/run
Executable file → Normal file
@@ -1,13 +1,11 @@
|
|||||||
#!/command/with-contenv bashio
|
#!/command/with-contenv bashio
|
||||||
# shellcheck shell=bash
|
# shellcheck shell=bash
|
||||||
set -e
|
|
||||||
# ==============================================================================
|
# ==============================================================================
|
||||||
# Home Assistant Community Add-on: Bitwarden
|
# Home Assistant Community Add-on: Vaultwarden
|
||||||
# This file configures nginx
|
# This file configures NGINX
|
||||||
# ==============================================================================
|
# ==============================================================================
|
||||||
declare certfile
|
declare certfile
|
||||||
declare keyfile
|
declare keyfile
|
||||||
declare max_body_size
|
|
||||||
|
|
||||||
bashio::config.require.ssl
|
bashio::config.require.ssl
|
||||||
|
|
||||||
@@ -21,11 +19,3 @@ if bashio::config.true 'ssl'; then
|
|||||||
else
|
else
|
||||||
mv /etc/nginx/servers/direct.disabled /etc/nginx/servers/direct.conf
|
mv /etc/nginx/servers/direct.disabled /etc/nginx/servers/direct.conf
|
||||||
fi
|
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
|
|
||||||
1
bitwarden/rootfs/etc/s6-overlay/s6-rc.d/init-nginx/type
Normal file
1
bitwarden/rootfs/etc/s6-overlay/s6-rc.d/init-nginx/type
Normal file
@@ -0,0 +1 @@
|
|||||||
|
oneshot
|
||||||
1
bitwarden/rootfs/etc/s6-overlay/s6-rc.d/init-nginx/up
Normal file
1
bitwarden/rootfs/etc/s6-overlay/s6-rc.d/init-nginx/up
Normal file
@@ -0,0 +1 @@
|
|||||||
|
/etc/s6-overlay/s6-rc.d/init-nginx/run
|
||||||
26
bitwarden/rootfs/etc/s6-overlay/s6-rc.d/nginx/finish
Normal file
26
bitwarden/rootfs/etc/s6-overlay/s6-rc.d/nginx/finish
Normal 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
|
||||||
6
zzz_archived_bitwarden/rootfs/etc/services.d/nginx/run → bitwarden/rootfs/etc/s6-overlay/s6-rc.d/nginx/run
Executable file → Normal file
6
zzz_archived_bitwarden/rootfs/etc/services.d/nginx/run → bitwarden/rootfs/etc/s6-overlay/s6-rc.d/nginx/run
Executable file → Normal file
@@ -1,8 +1,6 @@
|
|||||||
#!/usr/bin/with-contenv bashio
|
#!/command/with-contenv bashio
|
||||||
# shellcheck shell=bash
|
|
||||||
set -e
|
|
||||||
# ==============================================================================
|
# ==============================================================================
|
||||||
# Home Assistant Community Add-on: Bitwarden
|
# Home Assistant Community Add-on: Vaultwarden
|
||||||
# Runs the Nginx daemon
|
# Runs the Nginx daemon
|
||||||
# ==============================================================================
|
# ==============================================================================
|
||||||
bashio::net.wait_for 80
|
bashio::net.wait_for 80
|
||||||
1
bitwarden/rootfs/etc/s6-overlay/s6-rc.d/nginx/type
Normal file
1
bitwarden/rootfs/etc/s6-overlay/s6-rc.d/nginx/type
Normal file
@@ -0,0 +1 @@
|
|||||||
|
longrun
|
||||||
27
bitwarden/rootfs/etc/s6-overlay/s6-rc.d/vaultwarden/finish
Normal file
27
bitwarden/rootfs/etc/s6-overlay/s6-rc.d/vaultwarden/finish
Normal 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
|
||||||
15
zzz_archived_bitwarden/rootfs/etc/services.d/bitwarden/run → bitwarden/rootfs/etc/s6-overlay/s6-rc.d/vaultwarden/run
Executable file → Normal file
15
zzz_archived_bitwarden/rootfs/etc/services.d/bitwarden/run → bitwarden/rootfs/etc/s6-overlay/s6-rc.d/vaultwarden/run
Executable file → Normal file
@@ -1,8 +1,7 @@
|
|||||||
#!/command/with-contenv bashio
|
#!/command/with-contenv bashio
|
||||||
# shellcheck shell=bash
|
# shellcheck shell=bash
|
||||||
set -e
|
|
||||||
# ==============================================================================
|
# ==============================================================================
|
||||||
# Home Assistant Community Add-on: Bitwarden
|
# Home Assistant Community Add-on: Vaultwarden
|
||||||
# Runs the Vaultwarden server
|
# Runs the Vaultwarden server
|
||||||
# ==============================================================================
|
# ==============================================================================
|
||||||
declare admin_token
|
declare admin_token
|
||||||
@@ -22,19 +21,19 @@ export ROCKET_SECRET_KEY="${secret_key}"
|
|||||||
# Find the matching log level
|
# Find the matching log level
|
||||||
if bashio::config.has_value 'log_level'; then
|
if bashio::config.has_value 'log_level'; then
|
||||||
case "$(bashio::string.lower "$(bashio::config 'log_level')")" in
|
case "$(bashio::string.lower "$(bashio::config 'log_level')")" in
|
||||||
all | trace)
|
all|trace)
|
||||||
log_level="trace"
|
log_level="trace"
|
||||||
;;
|
;;
|
||||||
debug)
|
debug)
|
||||||
log_level="debug"
|
log_level="debug"
|
||||||
;;
|
;;
|
||||||
info | notice)
|
info|notice)
|
||||||
log_level="info"
|
log_level="info"
|
||||||
;;
|
;;
|
||||||
warning)
|
warning)
|
||||||
log_level="warn"
|
log_level="warn"
|
||||||
;;
|
;;
|
||||||
error | fatal)
|
error|fatal)
|
||||||
log_level="error"
|
log_level="error"
|
||||||
;;
|
;;
|
||||||
off)
|
off)
|
||||||
@@ -46,7 +45,7 @@ if bashio::config.has_value 'log_level'; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Show admin token in the log, if config does not exist.
|
# 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)
|
admin_token=$(openssl rand -base64 48)
|
||||||
export ADMIN_TOKEN="${admin_token}"
|
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}}"
|
export ROCKET_LIMITS="{json=${request_size_limit}}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Always enable Websockets
|
|
||||||
export WEBSOCKET_ENABLED=true
|
|
||||||
export WEBSOCKET_PORT=8080
|
|
||||||
|
|
||||||
# Run the Bitwarden server
|
# Run the Bitwarden server
|
||||||
bashio::log.info 'Starting the Vaultwarden server...'
|
bashio::log.info 'Starting the Vaultwarden server...'
|
||||||
cd /opt || bashio::exit.nok
|
cd /opt || bashio::exit.nok
|
||||||
1
bitwarden/rootfs/etc/s6-overlay/s6-rc.d/vaultwarden/type
Normal file
1
bitwarden/rootfs/etc/s6-overlay/s6-rc.d/vaultwarden/type
Normal file
@@ -0,0 +1 @@
|
|||||||
|
longrun
|
||||||
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
@@ -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;
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
upstream backend {
|
|
||||||
server 127.0.0.1:80;
|
|
||||||
}
|
|
||||||
|
|
||||||
upstream wsbackend {
|
|
||||||
server 127.0.0.1:8080;
|
|
||||||
}
|
|
||||||
@@ -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..."
|
|
||||||
@@ -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
|
|
||||||
Reference in New Issue
Block a user