mirror of
https://github.com/esphome/home-assistant-addon.git
synced 2024-12-17 15:57:46 +01:00
Update to 1.1.0 base image
This commit is contained in:
parent
cdb64ea062
commit
726ff220f1
@ -9,7 +9,8 @@
|
||||
"arch": [
|
||||
"amd64",
|
||||
"armhf",
|
||||
"i386"
|
||||
"i386",
|
||||
"aarch64"
|
||||
],
|
||||
"hassio_api": true,
|
||||
"auth_api": true,
|
||||
|
@ -1,4 +1,4 @@
|
||||
ARG BUILD_FROM=esphome/esphome-hassio-base-amd64:1.0.0
|
||||
ARG BUILD_FROM=esphome/esphome-hassio-base-amd64:1.1.0
|
||||
FROM ${BUILD_FROM}
|
||||
|
||||
RUN \
|
||||
|
@ -1,10 +1,10 @@
|
||||
{
|
||||
"squash": false,
|
||||
"build_from": {
|
||||
"aarch64": "esphome/esphome-hassio-base-aarch64:1.0.0",
|
||||
"amd64": "esphome/esphome-hassio-base-amd64:1.0.0",
|
||||
"armhf": "esphome/esphome-hassio-base-armhf:1.0.0",
|
||||
"i386": "esphome/esphome-hassio-base-i386:1.0.0"
|
||||
"aarch64": "esphome/esphome-hassio-base-aarch64:1.1.0",
|
||||
"amd64": "esphome/esphome-hassio-base-amd64:1.1.0",
|
||||
"armhf": "esphome/esphome-hassio-base-armhf:1.1.0",
|
||||
"i386": "esphome/esphome-hassio-base-i386:1.1.0"
|
||||
},
|
||||
"args": {}
|
||||
}
|
||||
|
@ -9,7 +9,8 @@
|
||||
"arch": [
|
||||
"amd64",
|
||||
"armhf",
|
||||
"i386"
|
||||
"i386",
|
||||
"aarch64"
|
||||
],
|
||||
"hassio_api": true,
|
||||
"auth_api": true,
|
||||
|
13
esphome-dev/rootfs/etc/cont-init.d/40-migrate.sh
Normal file
13
esphome-dev/rootfs/etc/cont-init.d/40-migrate.sh
Normal file
@ -0,0 +1,13 @@
|
||||
#!/usr/bin/with-contenv bash
|
||||
# ==============================================================================
|
||||
# Community Hass.io Add-ons: ESPHome
|
||||
# This files migrates the esphome config directory from the old path
|
||||
# ==============================================================================
|
||||
# shellcheck disable=SC1091
|
||||
source /usr/lib/hassio-addons/base.sh
|
||||
|
||||
if [[ ! -d /config/esphome && -d /config/esphomeyaml ]]; then
|
||||
echo "Moving config directory from /config/esphomeyaml to /config/esphome"
|
||||
mv /config/esphomeyaml /config/esphome
|
||||
mv /config/esphome/.esphomeyaml /config/esphome/.esphome
|
||||
fi
|
@ -9,7 +9,8 @@
|
||||
"arch": [
|
||||
"amd64",
|
||||
"armhf",
|
||||
"i386"
|
||||
"i386",
|
||||
"aarch64"
|
||||
],
|
||||
"hassio_api": true,
|
||||
"auth_api": true,
|
||||
|
Loading…
Reference in New Issue
Block a user