mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-11 18:31:02 +01:00
46 lines
946 B
JSON
46 lines
946 B
JSON
{
|
|
"arch": [
|
|
"aarch64",
|
|
"amd64"
|
|
],
|
|
"codenotary": "alexandrep.github@gmail.com",
|
|
"description": "A Self Hosted Recipe Manager (API)",
|
|
"environment": {
|
|
"DB_ENGINE": "sqlite",
|
|
"WEB_GUNICORN": "true"
|
|
},
|
|
"image": "ghcr.io/alexbelgium/mealie_api-{arch}",
|
|
"map": [
|
|
"config:rw",
|
|
"share:rw",
|
|
"ssl:rw"
|
|
],
|
|
"name": "Mealie (API)",
|
|
"options": {
|
|
"PGID": 1000,
|
|
"PUID": 1000,
|
|
"certfile": "fullchain.pem",
|
|
"keyfile": "privkey.pem",
|
|
"ssl": false
|
|
},
|
|
"panel_icon": "mdi:silverware-fork-knife",
|
|
"ports": {
|
|
"9000/tcp": 9000
|
|
},
|
|
"ports_description": {
|
|
"9000/tcp": "API port"
|
|
},
|
|
"schema": {
|
|
"BASE_URL": "str?",
|
|
"PGID": "int",
|
|
"PUID": "int",
|
|
"certfile": "str",
|
|
"keyfile": "str",
|
|
"ssl": "bool"
|
|
},
|
|
"slug": "mealie_api",
|
|
"url": "https://github.com/alexbelgium/hassio-addons",
|
|
"version": "v1.0.0-beta-2",
|
|
"webui": "[PROTO:ssl]://[HOST]:[PORT:9000]"
|
|
}
|