This commit is contained in:
Alexandre
2021-12-04 16:02:08 +01:00
9 changed files with 69 additions and 11 deletions

View File

@@ -1,4 +1,7 @@
## 15.9.10 (04-12-2021)
- Update to latest version from coderaiser/cloudcmd
## 15.9.9 (22-11-2021)
- Update to latest version from coderaiser/cloudcmd
- Allow mounting local drives by label. Just pust the label instead of sda1 for example

View File

@@ -59,8 +59,8 @@
"DROPBOX_TOKEN": "str?"
},
"slug": "cloudcommander",
"upstream": "15.9.9",
"upstream": "15.9.10",
"url": "https://github.com/alexbelgium/hassio-addons/tree/master/cloudcommander#readme",
"version": "15.9.9",
"version": "15.9.10",
"webui": "http://[HOST]:[PORT:8000]"
}

View File

@@ -1,3 +1,4 @@
- Added : "/dev/nvme0"
## 0.3.13 (26-10-2021)
- Update to latest version from analogj/scrutiny

View File

@@ -11,11 +11,8 @@ ARG TEMPIO_VERSION=2021.01.0
ARG BUILD_ARCH
RUN \
# Install script
chmod a+x /run.sh \
\
# Add apps
&& apk add --no-cache \
apk add --no-cache \
jq \
curl \
cifs-utils \
@@ -34,7 +31,11 @@ RUN \
| tar -xzf - --strip 1 -C /tmp/bashio \
&& mv /tmp/bashio/lib /usr/lib/bashio \
&& ln -s /usr/lib/bashio/bashio /usr/bin/bashio \
&& rm -rf /tmp/bashio \
&& rm -rf /tmp/bashio || true
RUN \
# Install script
chmod a+x /run.sh \
\
# Allow UID and GID setting
&& sed -i 's/bash/bashio/g' /etc/cont-init.d/10-adduser \

View File

@@ -42,6 +42,7 @@ profile db21ed7f_scrutiny flags=(attach_disconnected,mediate_deleted) {
/dev/sde mrwkl,
/dev/sdf mrwkl,
/dev/sdg mrwkl,
/dev/nvme0 mrwkl,
# Data access
/data/** rw,

View File

@@ -1,6 +1,6 @@
{
"name": "Scrutiny",
"version": "0.3.13-2",
"version": "0.3.13-3",
"upstream": "0.3.13",
"slug": "scrutiny",
"description": "Scrutiny WebUI for smartd S.M.A.R.T monitoring",
@@ -29,6 +29,8 @@
"/dev/sde",
"/dev/sdf",
"/dev/sdg",
"/dev/nvme",
"/dev/mmcblk",
"/dev/sda1",
"/dev/sdb1",
"/dev/sdc1",
@@ -42,7 +44,12 @@
"/dev/sdd2",
"/dev/sde2",
"/dev/sdf2",
"/dev/sdg2"
"/dev/sdg2",
"/dev/nvme0",
"/dev/nvme1",
"/dev/nvme2",
"/dev/mmcblk0",
"/dev/mmcblk0p1"
],
"privileged": [
"SYS_ADMIN",

View File

@@ -0,0 +1,35 @@
#!/bin/bash
# If dockerfile failed install manually
if [ ! -f "/usr/bin/bashio" ]; then
echo "Bashio does not exist, executing script"
(
################
# Install apps #
################
apk add --no-cache \
jq \
curl \
cifs-utils \
nginx
###################
# Install bashio #
##################
BASHIO_VERSION=0.14.3
mkdir -p /tmp/bashio
curl -L -f -s "https://github.com/hassio-addons/bashio/archive/v${BASHIO_VERSION}.tar.gz" |
tar -xzf - --strip 1 -C /tmp/bashio
mv /tmp/bashio/lib /usr/lib/bashio
ln -s /usr/lib/bashio/bashio /usr/bin/bashio
rm -rf /tmp/bashio
###################
# Install tempio #
##################
curl -L -f -s -o /usr/bin/tempio \
"https://github.com/home-assistant/tempio/releases/download/${TEMPIO_VERSION}/tempio_${BUILD_ARCH}" \
&& chmod a+x /usr/bin/tempio
) >/dev/null
fi

View File

@@ -1 +1,4 @@
## debian (04-12-2021)
- Update to latest version from mbentley/teamspeak
- Initial release

View File

@@ -1,5 +1,10 @@
{
"arch": ["aarch64", "amd64", "armhf", "armv7"],
"arch": [
"aarch64",
"amd64",
"armhf",
"armv7"
],
"description": "voice communication for online gaming, education and training",
"environment": {
"TS3SERVER_LICENSE": "accept",
@@ -9,7 +14,9 @@
"DIST_UPDATE": "1",
"TS_UPDATE": "1"
},
"map": ["share:rw"],
"map": [
"share:rw"
],
"name": "Teamspeak server",
"ports": {
"9987/udp": "9987",