Migrate JSON config to YAML (#33)

This commit is contained in:
Franck Nijhof 2021-11-04 11:47:03 +01:00 committed by GitHub
parent 50f9eb8fbe
commit 3b45d80c3f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 21 additions and 25 deletions

View file

@ -1,5 +0,0 @@
{
"build_from": {
"amd64": "ghcr.io/hassio-addons/debian-base/amd64:5.1.1"
}
}

3
foldingathome/build.yaml Normal file
View file

@ -0,0 +1,3 @@
---
build_from:
amd64: ghcr.io/hassio-addons/debian-base/amd64:5.1.1

View file

@ -1,20 +0,0 @@
{
"name": "Folding@home",
"version": "dev",
"slug": "foldingathome",
"description": "Fighting disease with a world wide distributed super computer",
"url": "https://github.com/hassio-addons/addon-foldingathome",
"webui": "http://[HOST]:[PORT:7396]",
"arch": ["amd64"],
"init": false,
"hassio_api": true,
"video": true,
"ports": {
"7396/tcp": 7396,
"36330/tcp": null
},
"ports_description": {
"7396/tcp": "Web interface",
"36330/tcp": "Remote command interface"
}
}

18
foldingathome/config.yaml Normal file
View file

@ -0,0 +1,18 @@
---
name: Folding@home
version: dev
slug: foldingathome
description: Fighting disease with a world wide distributed super computer
url: https://github.com/hassio-addons/addon-foldingathome
webui: http://[HOST]:[PORT:7396]
arch:
- amd64
init: false
hassio_api: true
video: true
ports:
7396/tcp: 7396
36330/tcp: null
ports_description:
7396/tcp: Web interface
36330/tcp: Remote command interface