mirror of
https://github.com/aljazceru/addons.git
synced 2025-12-17 05:04:21 +01:00
Add tzdata and fix timezone (#80)
This commit is contained in:
@@ -4,7 +4,7 @@ FROM %%BASE_IMAGE%%
|
|||||||
ENV LANG C.UTF-8
|
ENV LANG C.UTF-8
|
||||||
|
|
||||||
# Setup base
|
# Setup base
|
||||||
RUN apk add --no-cache jq python3 \
|
RUN apk add --no-cache tzdata jq python3 \
|
||||||
&& pip3 install --no-cache --upgrade pip
|
&& pip3 install --no-cache --upgrade pip
|
||||||
|
|
||||||
# Copy data
|
# Copy data
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Check HomeAssistant config",
|
"name": "Check HomeAssistant config",
|
||||||
"version": "0.3",
|
"version": "0.4",
|
||||||
"slug": "check_config",
|
"slug": "check_config",
|
||||||
"description": "Check HomeAssistant config with a new version",
|
"description": "Check HomeAssistant config with a new version",
|
||||||
"url": "https://home-assistant.io/addons/check_config/",
|
"url": "https://home-assistant.io/addons/check_config/",
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ FROM %%BASE_IMAGE%%
|
|||||||
ENV LANG C.UTF-8
|
ENV LANG C.UTF-8
|
||||||
|
|
||||||
# Setup base
|
# Setup base
|
||||||
RUN apk add --no-cache jq curl
|
RUN apk add --no-cache tzdata jq curl
|
||||||
|
|
||||||
# Copy data
|
# Copy data
|
||||||
COPY run.sh /
|
COPY run.sh /
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Duck DNS",
|
"name": "Duck DNS",
|
||||||
"version": "0.4",
|
"version": "0.5",
|
||||||
"slug": "duckdns",
|
"slug": "duckdns",
|
||||||
"description": "Free dynamic DNS hosted on Amazon VPC",
|
"description": "Free dynamic DNS hosted on Amazon VPC",
|
||||||
"url": "https://home-assistant.io/addons/duckdns/",
|
"url": "https://home-assistant.io/addons/duckdns/",
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ FROM %%BASE_IMAGE%%
|
|||||||
ENV LANG C.UTF-8
|
ENV LANG C.UTF-8
|
||||||
|
|
||||||
# Setup base
|
# Setup base
|
||||||
RUN apk add --no-cache jq certbot
|
RUN apk add --no-cache tzdata jq certbot
|
||||||
|
|
||||||
# Copy data
|
# Copy data
|
||||||
COPY run.sh /
|
COPY run.sh /
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Let's Encrypt",
|
"name": "Let's Encrypt",
|
||||||
"version": "0.7",
|
"version": "0.8",
|
||||||
"slug": "letsencrypt",
|
"slug": "letsencrypt",
|
||||||
"description": "Manage Let's Encrypt certificate",
|
"description": "Manage Let's Encrypt certificate",
|
||||||
"url": "https://home-assistant.io/addons/lets_encrypt/",
|
"url": "https://home-assistant.io/addons/lets_encrypt/",
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ FROM %%BASE_IMAGE%%
|
|||||||
ENV LANG C.UTF-8
|
ENV LANG C.UTF-8
|
||||||
|
|
||||||
# Setup base
|
# Setup base
|
||||||
RUN apk add --no-cache jq mosquitto
|
RUN apk add --no-cache tzdata jq mosquitto
|
||||||
|
|
||||||
# Copy data
|
# Copy data
|
||||||
COPY run.sh /
|
COPY run.sh /
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Mosquitto broker",
|
"name": "Mosquitto broker",
|
||||||
"version": "0.6",
|
"version": "0.7",
|
||||||
"slug": "mosquitto",
|
"slug": "mosquitto",
|
||||||
"description": "An Open Source MQTT broker",
|
"description": "An Open Source MQTT broker",
|
||||||
"url": "https://home-assistant.io/addons/mosquitto/",
|
"url": "https://home-assistant.io/addons/mosquitto/",
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ FROM %%BASE_IMAGE%%
|
|||||||
ENV LANG C.UTF-8
|
ENV LANG C.UTF-8
|
||||||
|
|
||||||
# Setup base
|
# Setup base
|
||||||
RUN apk add --no-cache jq nginx libressl
|
RUN apk add --no-cache tzdata jq nginx libressl
|
||||||
|
|
||||||
# Copy data
|
# Copy data
|
||||||
COPY run.sh /
|
COPY run.sh /
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Nginx HomeAssistant SSL proxy",
|
"name": "Nginx HomeAssistant SSL proxy",
|
||||||
"version": "0.2",
|
"version": "0.3",
|
||||||
"slug": "nginx_proxy",
|
"slug": "nginx_proxy",
|
||||||
"description": "Use nginx as SSL proxy to HomeAssistant instance",
|
"description": "Use nginx as SSL proxy to HomeAssistant instance",
|
||||||
"url": "https://home-assistant.io/addons/nginx_proxy/",
|
"url": "https://home-assistant.io/addons/nginx_proxy/",
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ FROM %%BASE_IMAGE%%
|
|||||||
ENV LANG C.UTF-8
|
ENV LANG C.UTF-8
|
||||||
|
|
||||||
# Setup base
|
# Setup base
|
||||||
RUN apk add --no-cache jq samba-server samba-common-tools
|
RUN apk add --no-cache tzdata jq samba-server samba-common-tools
|
||||||
|
|
||||||
# Copy data
|
# Copy data
|
||||||
COPY run.sh /
|
COPY run.sh /
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Samba share",
|
"name": "Samba share",
|
||||||
"version": "0.6",
|
"version": "0.7",
|
||||||
"slug": "samba",
|
"slug": "samba",
|
||||||
"description": "Expose HassIO folders with Samba",
|
"description": "Expose HassIO folders with Samba",
|
||||||
"url": "https://home-assistant.io/addons/samba/",
|
"url": "https://home-assistant.io/addons/samba/",
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ FROM %%BASE_IMAGE%%
|
|||||||
ENV LANG C.UTF-8
|
ENV LANG C.UTF-8
|
||||||
|
|
||||||
# Setup base
|
# Setup base
|
||||||
RUN apk add --no-cache jq openssh vim
|
RUN apk add --no-cache tzdata jq openssh vim
|
||||||
|
|
||||||
# Copy data
|
# Copy data
|
||||||
COPY run.sh /
|
COPY run.sh /
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "SSH server",
|
"name": "SSH server",
|
||||||
"version": "0.6",
|
"version": "0.7",
|
||||||
"slug": "ssh",
|
"slug": "ssh",
|
||||||
"description": "Connect to your server over SSH",
|
"description": "Connect to your server over SSH",
|
||||||
"url": "https://home-assistant.io/addons/ssh/",
|
"url": "https://home-assistant.io/addons/ssh/",
|
||||||
|
|||||||
Reference in New Issue
Block a user