mirror of
https://github.com/hassio-addons/addon-base.git
synced 2025-05-03 18:31:26 +00:00
Migrate JSON add-on config to YAML (#163)
This commit is contained in:
parent
c9dd065b38
commit
66f20de6d4
4 changed files with 19 additions and 17 deletions
|
@ -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
7
base/build.yaml
Normal 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
|
|
@ -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
12
base/config.yaml
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue