Migrate JSON config to YAML (#92)

This commit is contained in:
Franck Nijhof 2021-11-03 10:16:32 +01:00 committed by GitHub
parent 5224e50aa1
commit d686a63eb0
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": "ghcr.io/hassio-addons/base/aarch64:10.2.0",
"amd64": "ghcr.io/hassio-addons/base/amd64:10.2.0",
"armhf": "ghcr.io/hassio-addons/base/armhf:10.2.0",
"armv7": "ghcr.io/hassio-addons/base/armv7:10.2.0",
"i386": "ghcr.io/hassio-addons/base/i386:10.2.0"
}
}

7
base/build.yaml Normal file
View file

@ -0,0 +1,7 @@
---
build_from:
aarch64: ghcr.io/hassio-addons/base/aarch64:10.2.0
amd64: ghcr.io/hassio-addons/base/amd64:10.2.0
armhf: ghcr.io/hassio-addons/base/armhf:10.2.0
armv7: ghcr.io/hassio-addons/base/armv7:10.2.0
i386: ghcr.io/hassio-addons/base/i386:10.2.0

View file

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

12
base/config.yaml Normal file
View file

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