GitHub bot: fix linting issues (nobuild)

This commit is contained in:
github-actions
2025-07-15 18:57:19 +00:00
parent 0845fe596d
commit d03b40ad4d
2 changed files with 55 additions and 45 deletions

View File

@@ -1,76 +1,86 @@
{ {
"name": "Ente", "arch": [
"slug": "ente", "aarch64",
"version": "1.0.0", "amd64"
],
"description": "Selfhosted, endtoendencrypted photo & video storage (Ente server + MinIO).", "description": "Selfhosted, endtoendencrypted photo & video storage (Ente server + MinIO).",
"url": "https://github.com/alexbelgium/hassio-addons", "devices": [
"arch": ["aarch64", "amd64"], "/dev/dri",
"/dev/dri/renderD128",
"/dev/vchiq",
"/dev/video10",
"/dev/video11",
"/dev/video12"
],
"environment": {
"DB_DATABASE_NAME": "ente_db",
"DB_HOSTNAME": "homeassistant.local",
"DB_PASSWORD": "ente",
"DB_PORT": "5432",
"DB_USERNAME": "pguser",
"ENTE_API_ORIGIN": "http://[HOST]:[PORT:8080]",
"MINIO_ROOT_PASSWORD": "minioadmin",
"MINIO_ROOT_USER": "minioadmin",
"PGID": "0",
"PUID": "0",
"S3_BUCKET": "ente-media",
"S3_ENDPOINT": "http://localhost:3200",
"TZ": "Europe/Paris"
},
"hassio_api": true,
"image": "ghcr.io/alexbelgium/ente-{arch}", "image": "ghcr.io/alexbelgium/ente-{arch}",
"init": false, "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": [ "map": [
"addon_config:rw", "addon_config:rw",
"media:rw", "media:rw",
"share:rw", "share:rw",
"ssl:rw" "ssl:rw"
], ],
"devices": [ "name": "Ente",
"/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": { "options": {
"DB_DATABASE_NAME": "ente_db", "DB_DATABASE_NAME": "ente_db",
"DB_HOSTNAME": "homeassistant.local", "DB_HOSTNAME": "homeassistant.local",
"DB_PASSWORD": "ente", "DB_PASSWORD": "ente",
"DB_PORT": 5432, "DB_PORT": 5432,
"DB_USERNAME": "pguser", "DB_USERNAME": "pguser",
"MINIO_ROOT_USER": "minioadmin", "DISABLE_WEB_UI": false,
"MINIO_ROOT_PASSWORD": "minioadmin", "MINIO_ROOT_PASSWORD": "minioadmin",
"MINIO_ROOT_USER": "minioadmin",
"S3_BUCKET": "ente-media", "S3_BUCKET": "ente-media",
"TZ": "Europe/Paris", "TZ": "Europe/Paris"
"DISABLE_WEB_UI": false
}, },
"panel_icon": "mdi:image-multiple",
"ports": {
"3000/tcp": 8300,
"3200/tcp": 8320,
"8080/tcp": 8280
},
"ports_description": {
"3000/tcp": "Ente web UI",
"3200/tcp": "MinIO S3 endpoint",
"8080/tcp": "Ente API (museum)"
},
"privileged": [
"SYS_ADMIN",
"DAC_READ_SEARCH"
],
"schema": { "schema": {
"DB_DATABASE_NAME": "str", "DB_DATABASE_NAME": "str",
"DB_HOSTNAME": "str", "DB_HOSTNAME": "str",
"DB_PASSWORD": "str", "DB_PASSWORD": "str",
"DB_PORT": "int", "DB_PORT": "int",
"DB_USERNAME": "str", "DB_USERNAME": "str",
"MINIO_ROOT_USER": "str", "DISABLE_WEB_UI": "bool?",
"MINIO_ROOT_PASSWORD": "str", "MINIO_ROOT_PASSWORD": "str",
"MINIO_ROOT_USER": "str",
"S3_BUCKET": "str", "S3_BUCKET": "str",
"TZ": "str?", "TZ": "str?"
"DISABLE_WEB_UI": "bool?"
}, },
"privileged": ["SYS_ADMIN", "DAC_READ_SEARCH"], "slug": "ente",
"hassio_api": true, "startup": "services",
"udev": true, "udev": true,
"url": "https://github.com/alexbelgium/hassio-addons",
"version": "1.0.0",
"video": true, "video": true,
"panel_icon": "mdi:image-multiple",
"webui": "http://[HOST]:[PORT:3000]" "webui": "http://[HOST]:[PORT:3000]"
} }

View File

@@ -10,4 +10,4 @@ bashio::log.info "Starting minio..."
exec /usr/local/bin/minio server /data --address ":3200" & exec /usr/local/bin/minio server /data --address ":3200" &
bashio::log.info "Starting ente-web..." bashio::log.info "Starting ente-web..."
[ -n "$DISABLE_WEB_UI" ] || exec /usr/bin/ente-web [ -n "$DISABLE_WEB_UI" ] || exec /usr/bin/ente-web