Updater bot : portainer updated to 2.11.1

This commit is contained in:
alexbelgium
2022-02-08 01:58:13 +01:00
parent 3309d1665d
commit 638340207c
3 changed files with 15 additions and 5 deletions

View File

@@ -1,3 +1,6 @@
## 2.11.1 (08-02-2022)
- Update to latest version from portainer/portainer
- New standardized logic for Dockerfile build and packages installation - New standardized logic for Dockerfile build and packages installation
- Improve architecture detection - Improve architecture detection

View File

@@ -25,7 +25,7 @@ FROM ${BUILD_FROM}
SHELL ["/bin/bash", "-o", "pipefail", "-c"] SHELL ["/bin/bash", "-o", "pipefail", "-c"]
# Setup base # Setup base
ARG BUILD_UPSTREAM="2.11.0" ARG BUILD_UPSTREAM="2.11.1"
# spellcheck disable=SC2015 # spellcheck disable=SC2015
# hadolint ignore=SC2015 # hadolint ignore=SC2015

View File

@@ -1,5 +1,9 @@
{ {
"arch": ["aarch64", "amd64", "armv7"], "arch": [
"aarch64",
"amd64",
"armv7"
],
"description": "Manage your Docker environment with ease", "description": "Manage your Docker environment with ease",
"docker_api": true, "docker_api": true,
"hassio_api": true, "hassio_api": true,
@@ -7,7 +11,10 @@
"ingress_port": 1337, "ingress_port": 1337,
"ingress_stream": true, "ingress_stream": true,
"init": false, "init": false,
"map": ["share:rw", "ssl"], "map": [
"share:rw",
"ssl"
],
"name": "Portainer", "name": "Portainer",
"options": { "options": {
"ssl": false, "ssl": false,
@@ -32,8 +39,8 @@
}, },
"slug": "portainer", "slug": "portainer",
"startup": "services", "startup": "services",
"upstream": "2.11.0", "upstream": "2.11.1",
"url": "https://github.com/alexbelgium/hassio-addons", "url": "https://github.com/alexbelgium/hassio-addons",
"version": "2.11.0-3", "version": "2.11.1",
"webui": "[PROTO:ssl]://[HOST]:[PORT:9099]" "webui": "[PROTO:ssl]://[HOST]:[PORT:9099]"
} }