mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-22 12:36:29 +01:00
77 lines
2.0 KiB
JSON
77 lines
2.0 KiB
JSON
{
|
||
"name": "Ente",
|
||
"slug": "ente",
|
||
"version": "1.0.0",
|
||
"description": "Self‑hosted, end‑to‑end‑encrypted photo & video storage (Ente server + MinIO).",
|
||
"url": "https://github.com/alexbelgium/hassio-addons",
|
||
"arch": ["aarch64", "amd64"],
|
||
"image": "ghcr.io/alexbelgium/ente-{arch}",
|
||
"init": false,
|
||
"startup": "services",
|
||
"ports": {
|
||
"8080/tcp": 8280,
|
||
"3000/tcp": 8300,
|
||
"3200/tcp": 8320
|
||
},
|
||
"ports_description": {
|
||
"8080/tcp": "Ente API (museum)",
|
||
"3000/tcp": "Ente web UI",
|
||
"3200/tcp": "MinIO S3 endpoint"
|
||
},
|
||
"map": [
|
||
"addon_config:rw",
|
||
"media:rw",
|
||
"share:rw",
|
||
"ssl:rw"
|
||
],
|
||
"devices": [
|
||
"/dev/dri", "/dev/dri/renderD128",
|
||
"/dev/vchiq", "/dev/video10", "/dev/video11", "/dev/video12"
|
||
],
|
||
"environment": {
|
||
"PGID": "0",
|
||
"PUID": "0",
|
||
"DB_HOSTNAME": "homeassistant.local",
|
||
"DB_PORT": "5432",
|
||
"DB_USERNAME": "pguser",
|
||
"DB_PASSWORD": "ente",
|
||
"DB_DATABASE_NAME": "ente_db",
|
||
"MINIO_ROOT_USER": "minioadmin",
|
||
"MINIO_ROOT_PASSWORD": "minioadmin",
|
||
"S3_ENDPOINT": "http://localhost:3200",
|
||
"S3_BUCKET": "ente-media",
|
||
"ENTE_API_ORIGIN": "http://[HOST]:[PORT:8080]",
|
||
"TZ": "Europe/Paris"
|
||
},
|
||
"options": {
|
||
"DB_DATABASE_NAME": "ente_db",
|
||
"DB_HOSTNAME": "homeassistant.local",
|
||
"DB_PASSWORD": "ente",
|
||
"DB_PORT": 5432,
|
||
"DB_USERNAME": "pguser",
|
||
"MINIO_ROOT_USER": "minioadmin",
|
||
"MINIO_ROOT_PASSWORD": "minioadmin",
|
||
"S3_BUCKET": "ente-media",
|
||
"TZ": "Europe/Paris",
|
||
"DISABLE_WEB_UI": false
|
||
},
|
||
"schema": {
|
||
"DB_DATABASE_NAME": "str",
|
||
"DB_HOSTNAME": "str",
|
||
"DB_PASSWORD": "str",
|
||
"DB_PORT": "int",
|
||
"DB_USERNAME": "str",
|
||
"MINIO_ROOT_USER": "str",
|
||
"MINIO_ROOT_PASSWORD": "str",
|
||
"S3_BUCKET": "str",
|
||
"TZ": "str?",
|
||
"DISABLE_WEB_UI": "bool?"
|
||
},
|
||
"privileged": ["SYS_ADMIN", "DAC_READ_SEARCH"],
|
||
"hassio_api": true,
|
||
"udev": true,
|
||
"video": true,
|
||
"panel_icon": "mdi:image-multiple",
|
||
"webui": "http://[HOST]:[PORT:3000]"
|
||
}
|