From 534a76c58fcac61ca3de47431e10116a0fcfbfb6 Mon Sep 17 00:00:00 2001 From: Alexandre Date: Fri, 3 Dec 2021 22:23:35 +0100 Subject: [PATCH] 2.9.3 --- portainer/Dockerfile | 9 ++++----- portainer/config.json | 14 +++----------- 2 files changed, 7 insertions(+), 16 deletions(-) diff --git a/portainer/Dockerfile b/portainer/Dockerfile index d34ba857e..6b648c2fb 100644 --- a/portainer/Dockerfile +++ b/portainer/Dockerfile @@ -1,14 +1,13 @@ ARG BUILD_FROM=ghcr.io/hassio-addons/base/amd64:9.2.0 # hadolint ignore=DL3006 FROM ${BUILD_FROM} -ARG BUILD_UPSTREAM=2.9.2 # Set shell SHELL ["/bin/bash", "-o", "pipefail", "-c"] # Setup base - -ARG BUILD_ARCH=amd64 +ARG BUILD_ARCH=amd64 +ARG BUILD_UPSTREAM="2.9.3" RUN \ if [ "${BUILD_ARCH}" = "aarch64" ]; then ARCH="arm64"; fi \ && if [ "${BUILD_ARCH}" = "armhf" ]; then ARCH="arm"; fi \ @@ -16,8 +15,8 @@ RUN \ && if [ "${BUILD_ARCH}" = "amd64" ]; then ARCH="amd64"; fi \ \ && curl -L -s \ - "https://github.com/portainer/portainer/releases/download/${BUILD_UPSTREAM}/portainer-${BUILD_UPSTREAM}-linux-${ARCH}.tar.gz" \ - | tar zxvf - -C /opt/ + "https://github.com/portainer/portainer/releases/download/${BUILD_UPSTREAM}/portainer-${BUILD_UPSTREAM}-linux-${ARCH}.tar.gz" \ + | tar zxvf - -C /opt/ RUN \ apk add --no-cache \ diff --git a/portainer/config.json b/portainer/config.json index d1be0ad4b..7760baa65 100644 --- a/portainer/config.json +++ b/portainer/config.json @@ -1,10 +1,5 @@ { - "arch": [ - "aarch64", - "amd64", - "armhf", - "armv7" - ], + "arch": ["aarch64", "amd64", "armhf", "armv7"], "description": "Manage your Docker environment with ease", "docker_api": true, "hassio_api": true, @@ -12,10 +7,7 @@ "ingress_port": 1337, "ingress_stream": true, "init": false, - "map": [ - "share:rw", - "ssl" - ], + "map": ["share:rw", "ssl"], "name": "Portainer", "options": { "ssl": false, @@ -42,6 +34,6 @@ "startup": "services", "upstream": "2.9.3", "url": "https://github.com/alexbelgium/hassio-addons", - "version": "2.9.2-2", + "version": "2.9.3", "webui": "[PROTO:ssl]://[HOST]:[PORT:9099]" }