Automatic builds

This commit is contained in:
Alexandre
2022-01-18 16:40:24 +01:00
parent 470c58d15a
commit d9fab47244
158 changed files with 582 additions and 861 deletions

View File

@@ -1,2 +1,2 @@
- Automatic builds - Automatic builds (reduced size, local wear, install duration...)
- Initial build - Initial build

View File

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

View File

@@ -1,3 +1,4 @@
- Automatic builds (reduced size, local wear, install duration...)
- New standardized logic for Dockerfile build and packages installation - New standardized logic for Dockerfile build and packages installation
## 1.0.0 (07-12-2021) ## 1.0.0 (07-12-2021)

View File

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

View File

@@ -1,15 +1,11 @@
{ {
"apparmor": true, "apparmor": true,
"arch": [ "arch": ["aarch64", "amd64", "armv7", "armhf"],
"aarch64",
"amd64",
"armv7",
"armhf"
],
"boot": "auto", "boot": "auto",
"description": "block internet connection for local network devices", "description": "block internet connection for local network devices",
"devices": [], "devices": [],
"environment": {}, "environment": {},
"image": "ghcr.io/alexbelgium/arpspoof-{arch}",
"map": [], "map": [],
"host_network": true, "host_network": true,
"name": "Arpspoof", "name": "Arpspoof",
@@ -22,10 +18,7 @@
"ports_description": { "ports_description": {
"7022/tcp": "web interface" "7022/tcp": "web interface"
}, },
"privileged": [ "privileged": ["SYS_ADMIN", "DAC_READ_SEARCH"],
"SYS_ADMIN",
"DAC_READ_SEARCH"
],
"schema": { "schema": {
"ROUTER_IP": "str", "ROUTER_IP": "str",
"INTERFACE_NAME": "str?" "INTERFACE_NAME": "str?"

View File

@@ -1,3 +1,4 @@
- Automatic builds (reduced size, local wear, install duration...)
## 1.0.2 (04-01-2022) ## 1.0.2 (04-01-2022)
- Update to latest version from linuxserver/docker-bazarr - Update to latest version from linuxserver/docker-bazarr

View File

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

View File

@@ -5,21 +5,13 @@
"description": "Companion application to Sonarr and Radarr to download subtitles", "description": "Companion application to Sonarr and Radarr to download subtitles",
"url": "https://github.com/alexbelgium/hassio-addons/tree/master/bazarr", "url": "https://github.com/alexbelgium/hassio-addons/tree/master/bazarr",
"apparmor": true, "apparmor": true,
"arch": [ "arch": ["aarch64", "amd64", "armv7", "armhf"],
"aarch64",
"amd64",
"armv7",
"armhf"
],
"boot": "auto", "boot": "auto",
"image": "ghcr.io/alexbelgium/bazarr-{arch}",
"upstream": "1.0.2", "upstream": "1.0.2",
"webui": "http://[HOST]:[PORT:6767]", "webui": "http://[HOST]:[PORT:6767]",
"startup": "services", "startup": "services",
"backup_exclude": [ "backup_exclude": ["**/Backups/*", "**/logs/*", "**/MediaCover/*"],
"**/Backups/*",
"**/logs/*",
"**/MediaCover/*"
],
"devices": [ "devices": [
"/dev/sda", "/dev/sda",
"/dev/sdb", "/dev/sdb",
@@ -57,12 +49,7 @@
"PGID": "0" "PGID": "0"
}, },
"ingress": false, "ingress": false,
"map": [ "map": ["config:rw", "share:rw", "media:rw", "ssl"],
"config:rw",
"share:rw",
"media:rw",
"ssl"
],
"options": { "options": {
"PUID": 0, "PUID": 0,
"PGID": 0 "PGID": 0
@@ -73,10 +60,7 @@
"ports_description": { "ports_description": {
"6767/tcp": "web interface" "6767/tcp": "web interface"
}, },
"privileged": [ "privileged": ["SYS_ADMIN", "DAC_READ_SEARCH"],
"SYS_ADMIN",
"DAC_READ_SEARCH"
],
"schema": { "schema": {
"PUID": "int", "PUID": "int",
"PGID": "int", "PGID": "int",

View File

@@ -1,3 +1,4 @@
- Automatic builds (reduced size, local wear, install duration...)
## 1.23.1 (15-12-2021) ## 1.23.1 (15-12-2021)
- Update to latest version from dani-garcia/bitwarden_rs - Update to latest version from dani-garcia/bitwarden_rs

View File

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

View File

@@ -1,16 +1,11 @@
{ {
"apparmor": true, "apparmor": true,
"arch": [ "arch": ["aarch64", "amd64", "armv7"],
"aarch64",
"amd64",
"armv7"
],
"description": "Open source password management solution", "description": "Open source password management solution",
"init": false, "init": false,
"map": [ "map": ["ssl"],
"ssl" "name": "Vaultwarden (Bitwarden)",
], "image": "ghcr.io/alexbelgium/vaultwarden-{arch}",
"name": "Bitwarden (Vaultwarden)",
"options": { "options": {
"ssl": true, "ssl": true,
"certfile": "fullchain.pem", "certfile": "fullchain.pem",

View File

@@ -1,3 +1,4 @@
- Automatic builds (reduced size, local wear, install duration...)
## v2201.1.0-ls42 (15-01-2022) ## v2201.1.0-ls42 (15-01-2022)
- Update to latest version from linuxserver/docker-booksonic-air - Update to latest version from linuxserver/docker-booksonic-air

View File

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

View File

@@ -1,12 +1,8 @@
{ {
"apparmor": true, "apparmor": true,
"arch": [ "arch": ["aarch64", "amd64", "armv7", "armhf"],
"aarch64",
"amd64",
"armv7",
"armhf"
],
"boot": "auto", "boot": "auto",
"image": "ghcr.io/alexbelgium/booksonic_air-{arch}",
"description": "platform for accessing the audibooks you own wherever you are", "description": "platform for accessing the audibooks you own wherever you are",
"devices": [ "devices": [
"/dev/sda", "/dev/sda",
@@ -44,10 +40,7 @@
"PUID": "0", "PUID": "0",
"PGID": "0" "PGID": "0"
}, },
"map": [ "map": ["share:rw", "media:rw"],
"share:rw",
"media:rw"
],
"name": "Booksonic-air", "name": "Booksonic-air",
"options": { "options": {
"PUID": 0, "PUID": 0,
@@ -62,10 +55,7 @@
"ports_description": { "ports_description": {
"4040/tcp": "web interface" "4040/tcp": "web interface"
}, },
"privileged": [ "privileged": ["SYS_ADMIN", "DAC_READ_SEARCH"],
"SYS_ADMIN",
"DAC_READ_SEARCH"
],
"schema": { "schema": {
"PUID": "int", "PUID": "int",
"PGID": "int", "PGID": "int",

View File

@@ -1,3 +1,4 @@
- Automatic builds (reduced size, local wear, install duration...)
## 15.9.14 (15-01-2022) ## 15.9.14 (15-01-2022)
- Update to latest version from coderaiser/cloudcmd - Update to latest version from coderaiser/cloudcmd

View File

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

View File

@@ -1,12 +1,8 @@
{ {
"apparmor": true, "apparmor": true,
"arch": [ "arch": ["aarch64", "amd64", "armv7", "armhf"],
"aarch64",
"amd64",
"armv7",
"armhf"
],
"description": "Cloud Commander a file manager for the web with console and editor", "description": "Cloud Commander a file manager for the web with console and editor",
"image": "ghcr.io/alexbelgium/cloudcommander-{arch}",
"devices": [ "devices": [
"/dev/mmcblk0p8", "/dev/mmcblk0p8",
"/dev/sda", "/dev/sda",
@@ -61,10 +57,7 @@
"ports_description": { "ports_description": {
"8000/tcp": "Web UI port (required)" "8000/tcp": "Web UI port (required)"
}, },
"privileged": [ "privileged": ["SYS_ADMIN", "DAC_READ_SEARCH"],
"SYS_ADMIN",
"DAC_READ_SEARCH"
],
"schema": { "schema": {
"localdisks": "str?", "localdisks": "str?",
"networkdisks": "str?", "networkdisks": "str?",

View File

@@ -1,3 +1,4 @@
- Automatic builds (reduced size, local wear, install duration...)
## 4.0.1 (06-01-2022) ## 4.0.1 (06-01-2022)
- Update to latest version from linuxserver/docker-code-server - Update to latest version from linuxserver/docker-code-server

View File

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

View File

@@ -1,13 +1,9 @@
{ {
"apparmor": true, "apparmor": true,
"arch": [ "arch": ["aarch64", "amd64", "armv7", "armhf"],
"aarch64",
"amd64",
"armv7",
"armhf"
],
"boot": "auto", "boot": "auto",
"description": "Code-server is VS Code running on a remote server, accessible through the browser.", "description": "Code-server is VS Code running on a remote server, accessible through the browser.",
"image": "ghcr.io/alexbelgium/code-server-{arch}",
"devices": [ "devices": [
"/dev/sda", "/dev/sda",
"/dev/sdb", "/dev/sdb",
@@ -41,13 +37,7 @@
"/dev/nvme2" "/dev/nvme2"
], ],
"environment": {}, "environment": {},
"map": [ "map": ["backup:rw", "config:rw", "share:rw", "media:rw", "ssl"],
"backup:rw",
"config:rw",
"share:rw",
"media:rw",
"ssl"
],
"name": "VS code", "name": "VS code",
"options": { "options": {
"PUID": 0, "PUID": 0,
@@ -56,10 +46,7 @@
"ports": { "ports": {
"8443/tcp": 8443 "8443/tcp": 8443
}, },
"privileged": [ "privileged": ["SYS_ADMIN", "DAC_READ_SEARCH"],
"SYS_ADMIN",
"DAC_READ_SEARCH"
],
"schema": { "schema": {
"PUID": "int", "PUID": "int",
"PGID": "int", "PGID": "int",

View File

@@ -1,2 +1,3 @@
- Automatic builds (reduced size, local wear, install duration...)
- New standardized logic for Dockerfile build and packages installation - New standardized logic for Dockerfile build and packages installation
- Initial build - Initial build

View File

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

View File

@@ -1,8 +1,5 @@
{ {
"arch": [ "arch": ["aarch64", "amd64"],
"aarch64",
"amd64"
],
"description": "Free and Open, Distributed, RESTful Search Engine", "description": "Free and Open, Distributed, RESTful Search Engine",
"environment": { "environment": {
"ES_JAVA_OPTS": "-Xms1024M -Xmx1024M", "ES_JAVA_OPTS": "-Xms1024M -Xmx1024M",
@@ -10,9 +7,8 @@
"discovery.type": "single-node", "discovery.type": "single-node",
"TINI_SUBREAPER": "true" "TINI_SUBREAPER": "true"
}, },
"map": [ "image": "ghcr.io/alexbelgium/elasticsearch-{arch}",
"config:rw" "map": ["config:rw"],
],
"name": "Elasticsearch server", "name": "Elasticsearch server",
"options": {}, "options": {},
"host_network": true, "host_network": true,

View File

@@ -1,3 +1,4 @@
- Automatic builds (reduced size, local wear, install duration...)
## 4.7.0.20 (12-01-2022) ## 4.7.0.20 (12-01-2022)
- Update to latest version from linuxserver/docker-emby - Update to latest version from linuxserver/docker-emby

View File

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

View File

@@ -6,12 +6,8 @@
"description": "A Free Software Media System that puts you in control of managing and streaming your media.", "description": "A Free Software Media System that puts you in control of managing and streaming your media.",
"url": "https://github.com/alexbelgium/hassio-addons/tree/master/emby", "url": "https://github.com/alexbelgium/hassio-addons/tree/master/emby",
"apparmor": true, "apparmor": true,
"arch": [ "arch": ["aarch64", "amd64", "armv7", "armhf"],
"aarch64", "image": "ghcr.io/alexbelgium/emby-{arch}",
"amd64",
"armv7",
"armhf"
],
"boot": "auto", "boot": "auto",
"upstream": "4.7.0.20", "upstream": "4.7.0.20",
"webui": "http://[HOST]:[PORT:8096]", "webui": "http://[HOST]:[PORT:8096]",
@@ -68,12 +64,7 @@
"/dev/nvme1", "/dev/nvme1",
"/dev/nvme2" "/dev/nvme2"
], ],
"map": [ "map": ["config:rw", "share:rw", "media:rw", "ssl:rw"],
"config:rw",
"share:rw",
"media:rw",
"ssl:rw"
],
"options": { "options": {
"PUID": 0, "PUID": 0,
"PGID": 0, "PGID": 0,
@@ -91,10 +82,7 @@
"7359/udp": "udp server discover (optional)", "7359/udp": "udp server discover (optional)",
"1900/udp": "dlna (optional)" "1900/udp": "dlna (optional)"
}, },
"privileged": [ "privileged": ["SYS_ADMIN", "DAC_READ_SEARCH"],
"SYS_ADMIN",
"DAC_READ_SEARCH"
],
"schema": { "schema": {
"PUID": "int", "PUID": "int",
"PGID": "int", "PGID": "int",

View File

@@ -1,3 +1,4 @@
- Automatic builds (reduced size, local wear, install duration...)
- New standardized logic for Dockerfile build and packages installation - New standardized logic for Dockerfile build and packages installation
## 0.7.7 (25-11-2021) ## 0.7.7 (25-11-2021)

View File

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

View File

@@ -10,6 +10,7 @@
"verbose": true "verbose": true
}, },
"services": ["mqtt:want"], "services": ["mqtt:want"],
"image": "ghcr.io/alexbelgium/enedisgateway2mqtt-{arch}",
"schema": { "schema": {
"CONFIG_LOCATION": "str", "CONFIG_LOCATION": "str",
"mqtt_autodiscover": "bool", "mqtt_autodiscover": "bool",

View File

@@ -1,3 +1,4 @@
- Automatic builds (reduced size, local wear, install duration...)
- New standardized logic for Dockerfile build and packages installation - New standardized logic for Dockerfile build and packages installation
- Always aligned with dev versions - Always aligned with dev versions

View File

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

View File

@@ -1,19 +1,13 @@
{ {
"arch": [ "arch": ["aarch64", "amd64", "armv7", "armhf"],
"aarch64",
"amd64",
"armv7",
"armhf"
],
"description": "use Enedis Gateway API to send data in your MQTT Broker (latest-dev channel)", "description": "use Enedis Gateway API to send data in your MQTT Broker (latest-dev channel)",
"map": [ "map": ["config:rw"],
"config:rw"
],
"name": "Enedisgateway2mqtt Dev", "name": "Enedisgateway2mqtt Dev",
"options": { "options": {
"CONFIG_LOCATION": "/config/enedisgateway2mqtt_dev/config.yaml", "CONFIG_LOCATION": "/config/enedisgateway2mqtt_dev/config.yaml",
"TZ": "Europe/Paris" "TZ": "Europe/Paris"
}, },
"image": "ghcr.io/alexbelgium/enedisgateway2mqtt-dev-{arch}",
"schema": { "schema": {
"CONFIG_LOCATION": "str", "CONFIG_LOCATION": "str",
"TZ": "str?" "TZ": "str?"

View File

@@ -1,3 +1,4 @@
- Automatic builds (reduced size, local wear, install duration...)
- Cleanup: config base folder changed to /config/addons_config (thanks @bruvv) - Cleanup: config base folder changed to /config/addons_config (thanks @bruvv)
## 2.20.1 (23-12-2021) ## 2.20.1 (23-12-2021)

View File

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

View File

@@ -1,12 +1,8 @@
{ {
"apparmor": true, "apparmor": true,
"arch": [ "arch": ["aarch64", "amd64", "armv7", "armhf"],
"aarch64",
"amd64",
"armv7",
"armhf"
],
"description": "filebrowser provides a file managing interface within a specified directory and it can be used to upload, delete, preview, rename and edit your files", "description": "filebrowser provides a file managing interface within a specified directory and it can be used to upload, delete, preview, rename and edit your files",
"image": "ghcr.io/alexbelgium/filebrowser-{arch}",
"devices": [ "devices": [
"/dev/sda", "/dev/sda",
"/dev/sdb", "/dev/sdb",
@@ -67,10 +63,7 @@
"ports_description": { "ports_description": {
"8080/tcp": "Web UI port" "8080/tcp": "Web UI port"
}, },
"privileged": [ "privileged": ["SYS_ADMIN", "DAC_READ_SEARCH"],
"SYS_ADMIN",
"DAC_READ_SEARCH"
],
"schema": { "schema": {
"ssl": "bool", "ssl": "bool",
"certfile": "str", "certfile": "str",

View File

@@ -1,3 +1,4 @@
- Automatic builds (reduced size, local wear, install duration...)
- Silent mode added : hides output of the app if no errors - Silent mode added : hides output of the app if no errors
- Correct permissions - Correct permissions
- Allowed automatic update in hourly, daily or weekly setting from addon options - Allowed automatic update in hourly, daily or weekly setting from addon options

View File

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

View File

@@ -9,6 +9,7 @@
}, },
"map": ["config:rw", "share:rw", "ssl"], "map": ["config:rw", "share:rw", "ssl"],
"name": "Firefly iii", "name": "Firefly iii",
"image": "ghcr.io/alexbelgium/fireflyiii-{arch}",
"options": { "options": {
"DB_CONNECTION": "sqlite_internal", "DB_CONNECTION": "sqlite_internal",
"APP_KEY": "CHANGEME_32_CHARS_EuC5dfn3LAPzeO", "APP_KEY": "CHANGEME_32_CHARS_EuC5dfn3LAPzeO",

View File

@@ -1,3 +1,4 @@
- Automatic builds (reduced size, local wear, install duration...)
## 0.6.5 (15-01-2022) ## 0.6.5 (15-01-2022)
- Update to latest version from firefly-iii/data-importer - Update to latest version from firefly-iii/data-importer

View File

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

View File

@@ -1,22 +1,14 @@
{ {
"apparmor": true, "apparmor": true,
"arch": [ "arch": ["aarch64", "amd64", "armv7", "armhf"],
"aarch64",
"amd64",
"armv7",
"armhf"
],
"boot": "auto", "boot": "auto",
"description": "Data importer for Firefly III (separate addon)", "description": "Data importer for Firefly III (separate addon)",
"devices": [], "devices": [],
"image": "ghcr.io/alexbelgium/fireflyiii-importer-{arch}",
"environment": { "environment": {
"TRUSTED_PROXIES": "**" "TRUSTED_PROXIES": "**"
}, },
"map": [ "map": ["config:rw", "share:rw", "ssl"],
"config:rw",
"share:rw",
"ssl"
],
"name": "Firefly iii Data Importer", "name": "Firefly iii Data Importer",
"options": {}, "options": {},
"ports": { "ports": {

View File

@@ -1,3 +1,4 @@
- Automatic builds (reduced size, local wear, install duration...)
## 2.6.10 (20-12-2021) ## 2.6.10 (20-12-2021)
- Update to latest version from laurent22/joplin - Update to latest version from laurent22/joplin

View File

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

View File

@@ -6,6 +6,7 @@
"description": "Proxy server to bypass Cloudflare protection ", "description": "Proxy server to bypass Cloudflare protection ",
"url": "https://github.com/alexbelgium/hassio-addons", "url": "https://github.com/alexbelgium/hassio-addons",
"webui": "[PROTO:ssl]://[HOST]:[PORT:8191]", "webui": "[PROTO:ssl]://[HOST]:[PORT:8191]",
"image": "ghcr.io/alexbelgium/flaresolverr-{arch}",
"ports": { "ports": {
"8191/tcp": 8191 "8191/tcp": 8191
}, },

View File

@@ -1,3 +1,4 @@
- Automatic builds (reduced size, local wear, install duration...)
## 3.2.9 (18-01-2022) ## 3.2.9 (18-01-2022)
- Update to latest version from flexget/flexget - Update to latest version from flexget/flexget

View File

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

View File

@@ -1,20 +1,13 @@
{ {
"apparmor": true, "apparmor": true,
"arch": [ "arch": ["aarch64", "amd64", "armhf", "armv7"],
"aarch64",
"amd64",
"armhf",
"armv7"
],
"description": "FlexGet is a multipurpose automation tool for all of your media", "description": "FlexGet is a multipurpose automation tool for all of your media",
"image": "ghcr.io/alexbelgium/flexget-{arch}",
"environment": { "environment": {
"FG_PLUGINS": "", "FG_PLUGINS": "",
"FG_WEBUI_PASSWD": "" "FG_WEBUI_PASSWD": ""
}, },
"map": [ "map": ["share:rw", "config:rw"],
"share:rw",
"config:rw"
],
"name": "Flexget", "name": "Flexget",
"options": { "options": {
"PUID": 0, "PUID": 0,

View File

@@ -1,3 +1,4 @@
- Automatic builds (reduced size, local wear, install duration...)
## 0.7.0 (06-01-2022) ## 0.7.0 (06-01-2022)
- Update to latest version from yukulehe/gazpar2mqtt - Update to latest version from yukulehe/gazpar2mqtt

View File

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

View File

@@ -1,16 +1,9 @@
{ {
"arch": [ "arch": ["aarch64", "amd64", "armv7", "armhf"],
"aarch64",
"amd64",
"armv7",
"armhf"
],
"description": "fetch GRDF data and publish data to a mqtt broker", "description": "fetch GRDF data and publish data to a mqtt broker",
"map": [ "map": ["config:rw", "share:rw"],
"config:rw",
"share:rw"
],
"name": "gazpar2mqtt", "name": "gazpar2mqtt",
"image": "ghcr.io/alexbelgium/gazpar2mqtt-{arch}",
"options": { "options": {
"CONFIG_LOCATION": "/config/gazpar2mqtt/config.yaml", "CONFIG_LOCATION": "/config/gazpar2mqtt/config.yaml",
"mqtt_autodiscover": true, "mqtt_autodiscover": true,
@@ -23,9 +16,7 @@
"TZ": "str?", "TZ": "str?",
"verbose": "bool" "verbose": "bool"
}, },
"services": [ "services": ["mqtt:want"],
"mqtt:want"
],
"slug": "gazpar2mqtt", "slug": "gazpar2mqtt",
"upstream": "0.7.0", "upstream": "0.7.0",
"url": "https://github.com/alexbelgium/hassio-addons", "url": "https://github.com/alexbelgium/hassio-addons",

View File

@@ -1,3 +1,4 @@
- Automatic builds (reduced size, local wear, install duration...)
## 1.7.27.1 (15-01-2022) ## 1.7.27.1 (15-01-2022)
- Update to latest version from linuxserver/docker-grav - Update to latest version from linuxserver/docker-grav

View File

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

View File

@@ -1,19 +1,11 @@
{ {
"arch": [ "arch": ["aarch64", "amd64", "armv7", "armhf"],
"aarch64",
"amd64",
"armv7",
"armhf"
],
"boot": "auto", "boot": "auto",
"description": "Fast, Simple, and Flexible, file-based Web-platform", "description": "Fast, Simple, and Flexible, file-based Web-platform",
"devices": [], "devices": [],
"environment": {}, "environment": {},
"map": [ "image": "ghcr.io/alexbelgium/grav-{arch}",
"share:rw", "map": ["share:rw", "media:rw", "config:rw"],
"media:rw",
"config:rw"
],
"name": "Grav web server", "name": "Grav web server",
"options": { "options": {
"PUID": 1000, "PUID": 1000,

View File

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

View File

@@ -1,17 +1,11 @@
{ {
"arch": [ "arch": ["aarch64", "amd64", "armv7", "armhf"],
"aarch64",
"amd64",
"armv7",
"armhf"
],
"description": "Inadyn is a small and simple Dynamic DNS, DDNS, client with HTTPS support. A large number of dynamic dns providers are supported (https://github.com/troglobit/inadyn#supported-providers). For those that are not, you can use a custom provider as per this project's documentation (https://github.com/nalipaz/hassio-addons/blob/master/README.md)", "description": "Inadyn is a small and simple Dynamic DNS, DDNS, client with HTTPS support. A large number of dynamic dns providers are supported (https://github.com/troglobit/inadyn#supported-providers). For those that are not, you can use a custom provider as per this project's documentation (https://github.com/nalipaz/hassio-addons/blob/master/README.md)",
"environment": {}, "environment": {},
"host_network": true, "host_network": true,
"map": [ "map": ["ssl"],
"ssl"
],
"name": "Inadyn", "name": "Inadyn",
"image": "ghcr.io/alexbelgium/inadyn-{arch}",
"options": { "options": {
"providers": [ "providers": [
{ {

View File

@@ -1,3 +1,4 @@
- Automatic builds (reduced size, local wear, install duration...)
## 0.20.371 (18-01-2022) ## 0.20.371 (18-01-2022)
- Update to latest version from linuxserver/docker-jackett - Update to latest version from linuxserver/docker-jackett

View File

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

View File

@@ -5,26 +5,17 @@
"description": "translates queries from apps (Sonarr, SickRage, CouchPotato, Mylar, etc) into tracker-site-specific http queries, parses the html response, then sends results back to the requesting software", "description": "translates queries from apps (Sonarr, SickRage, CouchPotato, Mylar, etc) into tracker-site-specific http queries, parses the html response, then sends results back to the requesting software",
"url": "https://github.com/alexbelgium/hassio-addons/tree/master/jackett", "url": "https://github.com/alexbelgium/hassio-addons/tree/master/jackett",
"apparmor": true, "apparmor": true,
"arch": [ "arch": ["aarch64", "amd64", "armv7", "armhf"],
"aarch64",
"amd64",
"armv7",
"armhf"
],
"boot": "auto", "boot": "auto",
"upstream": "0.20.371", "upstream": "0.20.371",
"image": "ghcr.io/alexbelgium/jackett-{arch}",
"startup": "services", "startup": "services",
"webui": "http://[HOST]:[PORT:9117]", "webui": "http://[HOST]:[PORT:9117]",
"environment": { "environment": {
"PUID": "0", "PUID": "0",
"PGID": "0" "PGID": "0"
}, },
"map": [ "map": ["config:rw", "share:rw", "media:rw", "ssl"],
"config:rw",
"share:rw",
"media:rw",
"ssl"
],
"options": { "options": {
"PUID": 0, "PUID": 0,
"PGID": 0 "PGID": 0
@@ -35,10 +26,7 @@
"ports_description": { "ports_description": {
"9117/tcp": "web interface" "9117/tcp": "web interface"
}, },
"privileged": [ "privileged": ["SYS_ADMIN", "DAC_READ_SEARCH"],
"SYS_ADMIN",
"DAC_READ_SEARCH"
],
"schema": { "schema": {
"PUID": "int", "PUID": "int",
"PGID": "int", "PGID": "int",

View File

@@ -1,3 +1,4 @@
- Automatic builds (reduced size, local wear, install duration...)
## 10.7.7-1-ls149 (15-01-2022) ## 10.7.7-1-ls149 (15-01-2022)
- Update to latest version from linuxserver/docker-jellyfin - Update to latest version from linuxserver/docker-jellyfin

View File

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

View File

@@ -1,14 +1,10 @@
{ {
"host_network": true, "host_network": true,
"apparmor": true, "apparmor": true,
"arch": [ "arch": ["aarch64", "amd64", "armv7", "armhf"],
"aarch64",
"amd64",
"armv7",
"armhf"
],
"boot": "auto", "boot": "auto",
"description": "A Free Software Media System that puts you in control of managing and streaming your media.", "description": "A Free Software Media System that puts you in control of managing and streaming your media.",
"image": "ghcr.io/alexbelgium/jellyfin-{arch}",
"devices": [ "devices": [
"/dev/dri", "/dev/dri",
"/dev/dri/card0", "/dev/dri/card0",
@@ -54,12 +50,7 @@
"/dev/nvme1", "/dev/nvme1",
"/dev/nvme2" "/dev/nvme2"
], ],
"map": [ "map": ["config:rw", "share:rw", "media:rw", "ssl"],
"config:rw",
"share:rw",
"media:rw",
"ssl"
],
"name": "Jellyfin NAS", "name": "Jellyfin NAS",
"host_dbus": true, "host_dbus": true,
"options": { "options": {
@@ -78,11 +69,7 @@
"7359/udp": "udp server discover (optional)", "7359/udp": "udp server discover (optional)",
"1900/udp": "dlna (optional)" "1900/udp": "dlna (optional)"
}, },
"privileged": [ "privileged": ["SYS_ADMIN", "DAC_READ_SEARCH", "NET_ADMIN"],
"SYS_ADMIN",
"DAC_READ_SEARCH",
"NET_ADMIN"
],
"schema": { "schema": {
"PUID": "int", "PUID": "int",
"PGID": "int", "PGID": "int",

View File

@@ -1,3 +1,4 @@
- Automatic builds (reduced size, local wear, install duration...)
## 2.1.29 (23-12-2021) ## 2.1.29 (23-12-2021)
- Update to latest version from anthonyraymond/joal - Update to latest version from anthonyraymond/joal

View File

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

View File

@@ -1,20 +1,14 @@
{ {
"arch": [ "arch": ["aarch64", "amd64", "armv7", "armhf"],
"aarch64",
"amd64",
"armv7",
"armhf"
],
"boot": "auto", "boot": "auto",
"description": "An open source command line RatioMaster with WebUI", "description": "An open source command line RatioMaster with WebUI",
"environment": {}, "environment": {},
"hassio_api": true, "hassio_api": true,
"host_network": false, "host_network": false,
"ingress": true, "ingress": true,
"image": "ghcr.io/alexbelgium/joal-{arch}",
"ingress_port": 8099, "ingress_port": 8099,
"map": [ "map": ["config:rw"],
"config:rw"
],
"name": "Joal", "name": "Joal",
"options": { "options": {
"ui_path": "joal", "ui_path": "joal",

View File

@@ -1,3 +1,4 @@
- Automatic builds (reduced size, local wear, install duration...)
## 2.6.10 (20-12-2021) ## 2.6.10 (20-12-2021)
- Update to latest version from laurent22/joplin - Update to latest version from laurent22/joplin

View File

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

View File

@@ -10,12 +10,11 @@
"22300/tcp": 22300 "22300/tcp": 22300
}, },
"apparmor": true, "apparmor": true,
"image": "ghcr.io/alexbelgium/joplin-{arch}",
"ports_description": { "ports_description": {
"22300/tcp": "Web interface" "22300/tcp": "Web interface"
}, },
"map": [ "map": ["ssl"],
"ssl"
],
"environment": { "environment": {
"APP_PORT": "22300" "APP_PORT": "22300"
}, },
@@ -39,10 +38,5 @@
"MAILER_NOREPLY_NAME": "str?", "MAILER_NOREPLY_NAME": "str?",
"MAILER_NOREPLY_EMAIL": "str?" "MAILER_NOREPLY_EMAIL": "str?"
}, },
"arch": [ "arch": ["aarch64", "amd64", "armhf", "armv7"]
"aarch64",
"amd64",
"armhf",
"armv7"
]
} }

View File

@@ -1,3 +1,4 @@
- Automatic builds (reduced size, local wear, install duration...)
## 0.8.1.2135-ls69 (16-01-2022) ## 0.8.1.2135-ls69 (16-01-2022)
- Update to latest version from linuxserver/docker-lidarr - Update to latest version from linuxserver/docker-lidarr

View File

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

View File

@@ -5,13 +5,9 @@
"description": "Music collection manager for Usenet and BitTorrent users", "description": "Music collection manager for Usenet and BitTorrent users",
"url": "https://github.com/alexbelgium/hassio-addons/blob/master/lidarr/Readme.md", "url": "https://github.com/alexbelgium/hassio-addons/blob/master/lidarr/Readme.md",
"apparmor": true, "apparmor": true,
"arch": [ "arch": ["aarch64", "amd64", "armv7", "armhf"],
"aarch64",
"amd64",
"armv7",
"armhf"
],
"boot": "auto", "boot": "auto",
"image": "ghcr.io/alexbelgium/lidarr-{arch}",
"upstream": "0.8.1.2135-ls69", "upstream": "0.8.1.2135-ls69",
"webui": "http://[HOST]:[PORT:8686]", "webui": "http://[HOST]:[PORT:8686]",
"startup": "services", "startup": "services",
@@ -51,12 +47,7 @@
"PUID": "0", "PUID": "0",
"PGID": "0" "PGID": "0"
}, },
"map": [ "map": ["config:rw", "share:rw", "media:rw", "config:rw"],
"config:rw",
"share:rw",
"media:rw",
"config:rw"
],
"options": { "options": {
"PUID": 0, "PUID": 0,
"PGID": 0, "PGID": 0,
@@ -70,10 +61,7 @@
"ports_description": { "ports_description": {
"8686/tcp": "web interface" "8686/tcp": "web interface"
}, },
"privileged": [ "privileged": ["SYS_ADMIN", "DAC_READ_SEARCH"],
"SYS_ADMIN",
"DAC_READ_SEARCH"
],
"schema": { "schema": {
"PUID": "int", "PUID": "int",
"PGID": "int", "PGID": "int",

View File

@@ -1,3 +1,4 @@
- Automatic builds (reduced size, local wear, install duration...)
- New standardized logic for Dockerfile build and packages installation - New standardized logic for Dockerfile build and packages installation
## 0.5.4 (03-12-2021) ## 0.5.4 (03-12-2021)

View File

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

View File

@@ -1,10 +1,5 @@
{ {
"arch": [ "arch": ["aarch64", "amd64", "armhf", "armv7"],
"aarch64",
"amd64",
"armhf",
"armv7"
],
"boot": "auto", "boot": "auto",
"description": "Mealie is a self hosted recipe manager and meal planner with a RestAPI backend and a reactive frontend application built in Vue for a pleasant user experience for the whole family", "description": "Mealie is a self hosted recipe manager and meal planner with a RestAPI backend and a reactive frontend application built in Vue for a pleasant user experience for the whole family",
"environment": { "environment": {
@@ -12,11 +7,9 @@
"APP_PORT": "9925" "APP_PORT": "9925"
}, },
"ingress": false, "ingress": false,
"image": "ghcr.io/alexbelgium/mealie-{arch}",
"ingress_port": 8099, "ingress_port": 8099,
"map": [ "map": ["share:rw", "ssl:rw"],
"share:rw",
"ssl:rw"
],
"name": "Mealie", "name": "Mealie",
"options": { "options": {
"ssl": false, "ssl": false,

View File

@@ -1,3 +1,4 @@
- Automatic builds (reduced size, local wear, install duration...)
## 0.6.3 (06-01-2022) ## 0.6.3 (06-01-2022)
- Update to latest version from linuxserver/docker-mylar3 - Update to latest version from linuxserver/docker-mylar3

View File

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

View File

@@ -1,13 +1,9 @@
{ {
"apparmor": true, "apparmor": true,
"arch": [ "arch": ["aarch64", "amd64", "armv7", "armhf"],
"aarch64",
"amd64",
"armv7",
"armhf"
],
"boot": "auto", "boot": "auto",
"description": "Automated comic book downloader for use with NZB and torrents", "description": "Automated comic book downloader for use with NZB and torrents",
"image": "ghcr.io/alexbelgium/mylar3-{arch}",
"devices": [ "devices": [
"/dev/sda", "/dev/sda",
"/dev/sdb", "/dev/sdb",
@@ -44,12 +40,7 @@
"PUID": "0", "PUID": "0",
"PGID": "0" "PGID": "0"
}, },
"map": [ "map": ["config:rw", "share:rw", "media:rw", "config:rw"],
"config:rw",
"share:rw",
"media:rw",
"config:rw"
],
"name": "Mylar3", "name": "Mylar3",
"options": { "options": {
"PUID": 0, "PUID": 0,
@@ -61,10 +52,7 @@
"ports_description": { "ports_description": {
"8090/tcp": "web interface" "8090/tcp": "web interface"
}, },
"privileged": [ "privileged": ["SYS_ADMIN", "DAC_READ_SEARCH"],
"SYS_ADMIN",
"DAC_READ_SEARCH"
],
"schema": { "schema": {
"PUID": "int", "PUID": "int",
"PGID": "int", "PGID": "int",

View File

@@ -1,3 +1,4 @@
- Automatic builds (reduced size, local wear, install duration...)
- Automatic mount of local and smb mounts (see readme) - Automatic mount of local and smb mounts (see readme)
- New "Data directory" option that allows to define the folder where data are stored - New "Data directory" option that allows to define the folder where data are stored
- Provides MariaDB addon information to use it as database on first installation - Provides MariaDB addon information to use it as database on first installation

View File

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

View File

@@ -4,6 +4,7 @@
"version": "23.0.0-10", "version": "23.0.0-10",
"upstream": "23.0.0", "upstream": "23.0.0",
"slug": "nextcloud_ocr", "slug": "nextcloud_ocr",
"image": "ghcr.io/alexbelgium/nextcloud-{arch}",
"devices": [ "devices": [
"/dev/sda", "/dev/sda",
"/dev/sdb", "/dev/sdb",
@@ -36,10 +37,7 @@
"/dev/nvme1", "/dev/nvme1",
"/dev/nvme2" "/dev/nvme2"
], ],
"privileged": [ "privileged": ["SYS_ADMIN", "DAC_READ_SEARCH"],
"SYS_ADMIN",
"DAC_READ_SEARCH"
],
"ingress": false, "ingress": false,
"hassio_api": true, "hassio_api": true,
"ingress_port": 0, "ingress_port": 0,

View File

@@ -1,3 +1,4 @@
- Automatic builds (reduced size, local wear, install duration...)
- Cleanup: config base folder changed to /config/addons_config (thanks @bruvv) - Cleanup: config base folder changed to /config/addons_config (thanks @bruvv)
## 21.1 (15-12-2021) ## 21.1 (15-12-2021)

View File

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

View File

@@ -1,13 +1,9 @@
{ {
"apparmor": true, "apparmor": true,
"arch": [ "arch": ["aarch64", "amd64", "armv7", "armhf"],
"aarch64",
"amd64",
"armv7",
"armhf"
],
"boot": "auto", "boot": "auto",
"description": "usenet downloader", "description": "usenet downloader",
"image": "ghcr.io/alexbelgium/nzbget-{arch}",
"devices": [ "devices": [
"/dev/sda", "/dev/sda",
"/dev/sdb", "/dev/sdb",
@@ -44,12 +40,7 @@
"PUID": "0", "PUID": "0",
"PGID": "0" "PGID": "0"
}, },
"map": [ "map": ["config:rw", "share:rw", "media:rw", "config:rw"],
"config:rw",
"share:rw",
"media:rw",
"config:rw"
],
"name": "Nzbget", "name": "Nzbget",
"options": { "options": {
"PUID": 0, "PUID": 0,
@@ -61,10 +52,7 @@
"ports_description": { "ports_description": {
"6789/tcp": "web interface" "6789/tcp": "web interface"
}, },
"privileged": [ "privileged": ["SYS_ADMIN", "DAC_READ_SEARCH"],
"SYS_ADMIN",
"DAC_READ_SEARCH"
],
"schema": { "schema": {
"PUID": "int", "PUID": "int",
"PGID": "int", "PGID": "int",

View File

@@ -1,3 +1,4 @@
- Automatic builds (reduced size, local wear, install duration...)
## 4.3.3-3 (03-01-2022) ## 4.3.3-3 (03-01-2022)
- Cleanup: config base folder changed to /config/addons_config (thanks @bruvv) - Cleanup: config base folder changed to /config/addons_config (thanks @bruvv)

View File

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

View File

@@ -10,10 +10,9 @@
"upstream": "4.3.3", "upstream": "4.3.3",
"webui": "http://[HOST]:[PORT:3579]", "webui": "http://[HOST]:[PORT:3579]",
"startup": "services", "startup": "services",
"image": "ghcr.io/alexbelgium/ombi-{arch}",
"environment": {}, "environment": {},
"map": [ "map": ["config:rw"],
"config:rw"
],
"options": { "options": {
"PUID": 0, "PUID": 0,
"PGID": 0 "PGID": 0

View File

@@ -1,2 +1,3 @@
- Automatic builds (reduced size, local wear, install duration...)
- New standardized logic for Dockerfile build and packages installation - New standardized logic for Dockerfile build and packages installation
- Initial build - Initial build

View File

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

View File

@@ -6,26 +6,18 @@
"description": "An HTPC/Homelab services organizer that is written in PHP", "description": "An HTPC/Homelab services organizer that is written in PHP",
"url": "https://github.com/alexbelgium/hassio-addons", "url": "https://github.com/alexbelgium/hassio-addons",
"startup": "services", "startup": "services",
"arch": [ "arch": ["aarch64", "amd64", "armv7", "armhf"],
"aarch64",
"amd64",
"armv7",
"armhf"
],
"ports": { "ports": {
"80/tcp": 88 "80/tcp": 88
}, },
"ports_description": { "ports_description": {
"80/tcp": "web interface" "80/tcp": "web interface"
}, },
"map": [ "map": ["config:rw", "ssl"],
"config:rw",
"ssl"
],
"webui": "http://[HOST]:[PORT:80]", "webui": "http://[HOST]:[PORT:80]",
"image": "ghcr.io/alexbelgium/organizr-{arch}",
"boot": "auto", "boot": "auto",
"environment": { "environment": {},
},
"options": { "options": {
"PUID": "1000", "PUID": "1000",
"PGID": "1000" "PGID": "1000"

View File

@@ -1,3 +1,4 @@
- Automatic builds (reduced size, local wear, install duration...)
- Cleanup: config base folder changed to /config/addons_config (thanks @bruvv) - Cleanup: config base folder changed to /config/addons_config (thanks @bruvv)
- MultiOCR: in OCRLANG field use comma separated value. Ex: fra,deu (working) - MultiOCR: in OCRLANG field use comma separated value. Ex: fra,deu (working)
- Manual install pikepdf - Manual install pikepdf

View File

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

View File

@@ -3,6 +3,7 @@
"arch": ["aarch64", "amd64", "armv7", "armhf"], "arch": ["aarch64", "amd64", "armv7", "armhf"],
"boot": "auto", "boot": "auto",
"description": "scan, index and archive all your physical documents", "description": "scan, index and archive all your physical documents",
"image": "ghcr.io/alexbelgium/paperless_ng-{arch}",
"devices": [ "devices": [
"/dev/sda", "/dev/sda",
"/dev/sdb", "/dev/sdb",
@@ -61,7 +62,7 @@
"localdisks": "str?", "localdisks": "str?",
"networkdisks": "str?", "networkdisks": "str?",
"cifsusername": "str?", "cifsusername": "str?",
"cifspassword": "str?", "cifspassword": "str?",
"OCRLANG": "str?" "OCRLANG": "str?"
}, },
"slug": "paperless_ng", "slug": "paperless_ng",

View File

@@ -1,3 +1,4 @@
- Automatic builds (reduced size, local wear, install duration...)
- Allow custom config location - Allow custom config location
- Config exposed in /config/addons_config/papermerge - Config exposed in /config/addons_config/papermerge
- New standardized logic for Dockerfile build and packages installation - New standardized logic for Dockerfile build and packages installation

View File

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

View File

@@ -2,16 +2,16 @@
"apparmor": true, "apparmor": true,
"arch": ["aarch64", "amd64", "armv7", "armhf"], "arch": ["aarch64", "amd64", "armv7", "armhf"],
"description": "Open source document management system (DMS)", "description": "Open source document management system (DMS)",
"environment": { "environment": {},
},
"map": ["share:rw", "media:rw", "ssl", "config:rw"], "map": ["share:rw", "media:rw", "ssl", "config:rw"],
"name": "Papermerge", "name": "Papermerge",
"image": "ghcr.io/alexbelgium/papermerge-{arch}",
"options": { "options": {
"PUID": 0, "PUID": 0,
"PGID": 0, "PGID": 0,
"ocrlang": "eng,fra", "ocrlang": "eng,fra",
"storage_dir": "/data/media", "storage_dir": "/data/media",
"import_dir": "/share/papermerge/import", "import_dir": "/share/papermerge/import",
"CONFIG_LOCATION": "/config/addons_config/papermerge" "CONFIG_LOCATION": "/config/addons_config/papermerge"
}, },
"ports": { "ports": {

View File

@@ -1,3 +1,4 @@
- Automatic builds (reduced size, local wear, install duration...)
## 20220107 (07-01-2022) ## 20220107 (07-01-2022)
- Update to latest version from photoprism/photoprism - Update to latest version from photoprism/photoprism

View File

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

View File

@@ -1,9 +1,6 @@
{ {
"apparmor": true, "apparmor": true,
"arch": [ "arch": ["aarch64", "amd64"],
"aarch64",
"amd64"
],
"description": "A server-based application for browsing, organizing and sharing your personal photo collection", "description": "A server-based application for browsing, organizing and sharing your personal photo collection",
"devices": [ "devices": [
"/dev/sda", "/dev/sda",
@@ -38,13 +35,11 @@
"/dev/nvme2" "/dev/nvme2"
], ],
"homeassistant": "0.92.0b2", "homeassistant": "0.92.0b2",
"image": "ghcr.io/alexbelgium/photoprism-{arch}",
"environment": { "environment": {
"PHOTOPRISM_ADMIN_PASSWORD": "please_change_password" "PHOTOPRISM_ADMIN_PASSWORD": "please_change_password"
}, },
"map": [ "map": ["media:rw", "share:rw"],
"media:rw",
"share:rw"
],
"name": "Photoprism", "name": "Photoprism",
"options": { "options": {
"networkdisks": "//server/share", "networkdisks": "//server/share",
@@ -63,10 +58,7 @@
"ports_description": { "ports_description": {
"2342/tcp": "Web interface" "2342/tcp": "Web interface"
}, },
"privileged": [ "privileged": ["SYS_ADMIN", "DAC_READ_SEARCH"],
"SYS_ADMIN",
"DAC_READ_SEARCH"
],
"schema": { "schema": {
"localdisks": "str?", "localdisks": "str?",
"networkdisks": "str?", "networkdisks": "str?",

View File

@@ -1,3 +1,4 @@
- Automatic builds (reduced size, local wear, install duration...)
## 12.2.0 (04-01-2022) ## 12.2.0 (04-01-2022)
- Update to latest version from linuxserver/docker-piwigo - Update to latest version from linuxserver/docker-piwigo

View File

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

View File

@@ -4,7 +4,7 @@
[donation-badge]: https://img.shields.io/badge/Buy%20me%20a%20coffee-%23d32f2f?logo=buy-me-a-coffee&style=flat&logoColor=white [donation-badge]: https://img.shields.io/badge/Buy%20me%20a%20coffee-%23d32f2f?logo=buy-me-a-coffee&style=flat&logoColor=white
![Supports ![Supports
Architecture][aarch64-shield] ![Supports amd64 Architecture][amd64-shield] ![Supports armhf Architecture][armhf-shield] ![Supports armv7 Architecture][armv7-shield] Architecture][aarch64-shield] ![Supports amd64 Architecture][amd64-shield] ![Supports armhf Architecture][armhf-shield] ![Supports armv7 Architecture][armv7-shield]
_Thanks to everyone having starred my repo! To star it click on the image below, then it will be on top right. Thanks!_ _Thanks to everyone having starred my repo! To star it click on the image below, then it will be on top right. Thanks!_
@@ -13,7 +13,7 @@ _Thanks to everyone having starred my repo! To star it click on the image below,
## About ## About
Piwigo is a photo gallery software for the Web. Piwigo is a photo gallery software for the Web.
This addon is based on the [docker image](https://github.com/linuxserver/piwigo) from linuxserver.io. This addon is based on the [docker image](https://github.com/linuxserver/piwigo) from linuxserver.io.
## Installation ## Installation

Some files were not shown because too many files have changed in this diff Show More