Migrate JSON add-on config to YAML (#163)

This commit is contained in:
Franck Nijhof 2021-11-01 19:45:50 +01:00 committed by GitHub
parent c9dd065b38
commit 66f20de6d4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 19 additions and 17 deletions

View file

@ -1,9 +0,0 @@
{
"build_from": {
"aarch64": "arm64v8/alpine:3.14.2",
"amd64": "amd64/alpine:3.14.2",
"armhf": "arm32v6/alpine:3.14.2",
"armv7": "arm32v7/alpine:3.14.2",
"i386": "i386/alpine:3.14.2"
}
}

7
base/build.yaml Normal file
View file

@ -0,0 +1,7 @@
---
build_from:
aarch64: arm64v8/alpine:3.14.2
amd64: amd64/alpine:3.14.2
armhf: arm32v6/alpine:3.14.2
armv7: arm32v7/alpine:3.14.2
i386: i386/alpine:3.14.2

View file

@ -1,8 +0,0 @@
{
"name": "Base Image",
"version": "dev",
"slug": "base",
"description": "Docker base images used by Home Assistant Community Add-ons.",
"url": "https://github.com/hassio-addons/addon-base",
"arch": ["aarch64", "amd64", "armhf", "armv7", "i386"]
}

12
base/config.yaml Normal file
View file

@ -0,0 +1,12 @@
---
name: Base Image
version: dev
slug: base
description: Docker base images used by Home Assistant Community Add-ons.
url: https://github.com/hassio-addons/addon-base
arch:
- aarch64
- amd64
- armhf
- armv7
- i386