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

This commit is contained in:
Franck Nijhof 2021-11-02 13:09:31 +01:00 committed by GitHub
parent 8c45591aa4
commit 7ecedfbade
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/debian:bullseye-20211011-slim",
"amd64": "amd64/debian:bullseye-20211011-slim",
"armhf": "arm32v5/debian:bullseye-20211011-slim",
"armv7": "arm32v7/debian:bullseye-20211011-slim",
"i386": "i386/debian:bullseye-20211011-slim"
}
}

7
base/build.yaml Normal file
View file

@ -0,0 +1,7 @@
---
build_from:
aarch64: arm64v8/debian:bullseye-20211011-slim
amd64: amd64/debian:bullseye-20211011-slim
armhf: arm32v5/debian:bullseye-20211011-slim
armv7: arm32v7/debian:bullseye-20211011-slim
i386: i386/debian:bullseye-20211011-slim

View file

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

12
base/config.yaml Normal file
View file

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