mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-11 18:31:02 +01:00
Merge branch 'master' of https://github.com/alexbelgium/hassio-addons
This commit is contained in:
@@ -44,7 +44,8 @@ https://github.com/alexbelgium/hassio-addons
|
||||
|
||||
## ✓ Documents management
|
||||
|
||||
- [Nextcloud OCR](nextcloud/) ![smb][smb-shield] : A Nextcloud container, brought to you by LinuxServer.io.
|
||||
- [Nextcloud OCR](nextcloud/) ![smb][smb-shield] : A Nextcloud container, brought to you by LinuxServer.io
|
||||
- [Paperless NG](paperless_ng/) ![smb][smb-shield] : scan, index and archive all your physical documents
|
||||
- [Papermerge](papermerge/) ![smb][smb-shield] : Open source document management system (DMS)
|
||||
- [Elasticsearch](elasticsearch/) : distributed, RESTful search and analytics engine capable of solving a growing number of use cases
|
||||
|
||||
|
||||
@@ -1,4 +1,7 @@
|
||||
|
||||
## 3.2.2 (30-11-2021)
|
||||
- Update to latest version from flexget/flexget
|
||||
|
||||
## 3.2.1 (26-11-2021)
|
||||
- Update to latest version from flexget/flexget
|
||||
|
||||
|
||||
@@ -33,8 +33,8 @@
|
||||
"FG_PLUGINS": "str?"
|
||||
},
|
||||
"slug": "flexget",
|
||||
"upstream": "3.2.1",
|
||||
"upstream": "3.2.2",
|
||||
"url": "https://github.com/alexbelgium/hassio-addons",
|
||||
"version": "3.2.1",
|
||||
"version": "3.2.2",
|
||||
"webui": "http://[HOST]:[PORT:5050]"
|
||||
}
|
||||
|
||||
@@ -1,4 +1,7 @@
|
||||
|
||||
## 0.20.78 (30-11-2021)
|
||||
- Update to latest version from linuxserver/docker-jackett
|
||||
|
||||
## 0.20.74 (30-11-2021)
|
||||
- Update to latest version from linuxserver/docker-jackett
|
||||
|
||||
|
||||
@@ -44,8 +44,8 @@
|
||||
},
|
||||
"slug": "jackett_nas",
|
||||
"startup": "services",
|
||||
"upstream": "0.20.74",
|
||||
"upstream": "0.20.78",
|
||||
"url": "https://github.com/alexbelgium/hassio-addons",
|
||||
"version": "0.20.74",
|
||||
"version": "0.20.78",
|
||||
"webui": "http://[HOST]:[PORT:9117]"
|
||||
}
|
||||
|
||||
@@ -1,4 +1,7 @@
|
||||
|
||||
## 23.0.0 (30-11-2021)
|
||||
- Update to latest version from linuxserver/docker-nextcloud
|
||||
|
||||
## 22.2.3 (16-11-2021)
|
||||
- Update to latest version from linuxserver/docker-nextcloud
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
ARG BUILD_FROM
|
||||
ARG BUILD_VERSION
|
||||
ARG BUILD_UPSTREAM="22.2.3"
|
||||
ARG BUILD_UPSTREAM="23.0.0"
|
||||
|
||||
FROM ${BUILD_FROM}
|
||||
|
||||
|
||||
@@ -1,17 +1,25 @@
|
||||
{
|
||||
"name": "Nextcloud",
|
||||
"url": "https://github.com/alexbelgium/hassio-addons",
|
||||
"version": "22.2.3-3",
|
||||
"upstream": "22.2.3",
|
||||
"version": "23.0.0",
|
||||
"upstream": "23.0.0",
|
||||
"slug": "nextcloud_ocr",
|
||||
"ingress": false,
|
||||
"hassio_api": true,
|
||||
"ingress_port": 0,
|
||||
"arch": ["aarch64", "amd64", "armv7"],
|
||||
"arch": [
|
||||
"aarch64",
|
||||
"amd64",
|
||||
"armv7"
|
||||
],
|
||||
"description": "Nextcloud for Home Assistant",
|
||||
"boot": "manual",
|
||||
"uart": true,
|
||||
"map": ["share:rw", "media:rw", "ssl:rw"],
|
||||
"map": [
|
||||
"share:rw",
|
||||
"media:rw",
|
||||
"ssl:rw"
|
||||
],
|
||||
"ports": {
|
||||
"443/tcp": 8099,
|
||||
"80/tcp": null
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"armhf"
|
||||
],
|
||||
"boot": "auto",
|
||||
"description": "indexes your scanned documents and allows you to easily search for documents and store metadata",
|
||||
"description": "scan, index and archive all your physical documents",
|
||||
"devices": [
|
||||
"/dev/sda1",
|
||||
"/dev/sdb1",
|
||||
|
||||
@@ -7,12 +7,13 @@ ARG BUILD_UPSTREAM="2.9.3"
|
||||
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
||||
|
||||
# Setup base
|
||||
ARG BUILD_ARCH
|
||||
RUN \
|
||||
apk add --no-cache \
|
||||
nginx \
|
||||
\
|
||||
&& if [ "${BUILD_ARCH}" = "aarch64" ]; then ARCH="arm64"; fi \
|
||||
nginx || true
|
||||
|
||||
ARG BUILD_ARCH
|
||||
RUN \
|
||||
if [ "${BUILD_ARCH}" = "aarch64" ]; then ARCH="arm64"; fi \
|
||||
&& if [ "${BUILD_ARCH}" = "armhf" ]; then ARCH="arm"; fi \
|
||||
&& if [ "${BUILD_ARCH}" = "armv7" ]; then ARCH="arm"; fi \
|
||||
&& if [ "${BUILD_ARCH}" = "amd64" ]; then ARCH="amd64"; fi \
|
||||
|
||||
@@ -43,6 +43,6 @@
|
||||
"startup": "services",
|
||||
"upstream": "2.9.3",
|
||||
"url": "https://github.com/alexbelgium/hassio-addons",
|
||||
"version": "2.9.3-3",
|
||||
"version": "2.9.3-4",
|
||||
"webui": "[PROTO:ssl]://[HOST]:[PORT:9099]"
|
||||
}
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
#!/bin/bash
|
||||
# If dockerfile failed install manually
|
||||
nginx -v &>/dev/null || apk add --no-cache nginx
|
||||
@@ -1,4 +1,7 @@
|
||||
|
||||
## nightly-0.1.6.1176-ls209 (30-11-2021)
|
||||
- Update to latest version from linuxserver/docker-prowlarr
|
||||
|
||||
## nightly-0.1.6.1165-ls205 (30-11-2021)
|
||||
- Update to latest version from linuxserver/docker-prowlarr
|
||||
|
||||
|
||||
@@ -47,8 +47,8 @@
|
||||
},
|
||||
"slug": "prowlarr",
|
||||
"startup": "services",
|
||||
"upstream": "nightly-0.1.6.1165-ls205",
|
||||
"upstream": "nightly-0.1.6.1176-ls209",
|
||||
"url": "https://github.com/alexbelgium/hassio-addons",
|
||||
"version": "nightly-0.1.6.1165-ls205",
|
||||
"version": "nightly-0.1.6.1176-ls209",
|
||||
"webui": "http://[HOST]:[PORT:9696]"
|
||||
}
|
||||
|
||||
@@ -59,6 +59,6 @@
|
||||
"startup": "services",
|
||||
"upstream": "2.1.2",
|
||||
"url": "https://github.com/alexbelgium/hassio-addons",
|
||||
"version": "2.1.2-6",
|
||||
"version": "2.1.2-7",
|
||||
"webui": "[PROTO:ssl]://[HOST]:[PORT:2206]/ubooquity/admin"
|
||||
}
|
||||
|
||||
@@ -16,6 +16,7 @@ RUN \
|
||||
&& apt-get install -y \
|
||||
jq \
|
||||
curl \
|
||||
yamllint \
|
||||
&& apt-get clean \
|
||||
\
|
||||
##################
|
||||
|
||||
@@ -16,10 +16,6 @@ _Thanks to everyone having starred my repo! To star it click on the image below,
|
||||
|
||||
[webtrees](http://www.webtrees.net) is the web's leading online collaborative genealogy application.
|
||||
|
||||
It works from standard GEDCOM files, and is therefore compatible with every major desktop application.
|
||||
It aims to to be efficient and effective by using the right combination of third-party tools, design techniques and open standards.
|
||||
webtrees allows you to view and edit your genealogy on your website. It has full editing capabilities, full privacy functions, and supports imedia such as photos and document images. As an online program, it fosters extended family participation and good ancestral recording habits, as it simplifies the process of collaborating with others working on your family lines. Your latest information is always on your web site and available for others to see, defined by viewing rules you set. For more information and to see working demos, visit webtrees.net.
|
||||
|
||||
This addon is based on the docker image https://github.com/NathanVaughn/webtrees-docker
|
||||
|
||||
## Configuration
|
||||
@@ -36,6 +32,7 @@ Options can be configured through two ways :
|
||||
"LANG": "en-US" # Default language for webtrees
|
||||
"BASE_URL": "http://192.168.178.69" # The url with which you access webtrees
|
||||
"DB_TYPE": "sqlite" # Your database type : sqlite for automatic configuration, or external for manual config
|
||||
"CONFIG_LOCATION": location of the config.yaml (see below)
|
||||
```
|
||||
|
||||
- Config.yaml
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
"WT_PASS": "mybadpassword",
|
||||
"WT_EMAIL": "me@example.com"
|
||||
},
|
||||
"map": ["share:rw", "ssl"],
|
||||
"map": ["config:rw", "share:rw", "ssl"],
|
||||
"name": "Webtrees",
|
||||
"options": {
|
||||
"CONFIG_LOCATION": "/config/addons_config/webtrees/config.yaml",
|
||||
@@ -42,6 +42,6 @@
|
||||
"startup": "services",
|
||||
"upstream": "2.0.17",
|
||||
"url": "https://github.com/alexbelgium/hassio-addons",
|
||||
"version": "2.1-2",
|
||||
"version": "2.1-3",
|
||||
"webui": "[PROTO:ssl]://[HOST]:[PORT:80]"
|
||||
}
|
||||
|
||||
@@ -33,7 +33,7 @@ fi
|
||||
####################
|
||||
# Starting scripts #
|
||||
####################
|
||||
|
||||
cd /
|
||||
for SCRIPTS in scripts/*; do
|
||||
[ -e "$SCRIPTS" ] || continue
|
||||
echo "$SCRIPTS: executing"
|
||||
|
||||
@@ -6,10 +6,11 @@ if [ ! -f "/usr/bin/bashio" ]; then
|
||||
################
|
||||
# Install apps #
|
||||
################
|
||||
apt-get clean &&
|
||||
apt-get update &&
|
||||
apt-get install -y \
|
||||
apt-get clean
|
||||
apt-get update
|
||||
apt-get install -y \
|
||||
jq \
|
||||
yamllint \
|
||||
curl &&
|
||||
apt-get clean
|
||||
|
||||
|
||||
Reference in New Issue
Block a user