Implement vector.rs

https://github.com/alexbelgium/hassio-addons/issues/1138
This commit is contained in:
Alexandre
2024-01-31 09:00:07 +01:00
committed by GitHub
parent 1712e34efa
commit 0125740981

View File

@@ -8,15 +8,18 @@
"codenotary": "alexandrep.github@gmail.com", "codenotary": "alexandrep.github@gmail.com",
"description": "Postgres 15", "description": "Postgres 15",
"environment": { "environment": {
"PGDATA": "/data/database" "PGDATA": "/config/database",
"CONFIG_LOCATION": "/config/postgresql.conf"
}, },
"image": "ghcr.io/alexbelgium/postgres-{arch}", "image": "ghcr.io/alexbelgium/postgres-{arch}",
"map": [ "map": [
"config:rw" "addon_config:rw",
"homeassistant_config:rw",
"media:rw"
], ],
"name": "Postgres", "name": "Postgres 15",
"options": { "options": {
"CONFIG_LOCATION": "/config/addons_config/postgres/postgresql.conf", "vector.rs_enabled": true,
"POSTGRES_PASSWORD": "homeassistant" "POSTGRES_PASSWORD": "homeassistant"
}, },
"ports": { "ports": {
@@ -26,7 +29,7 @@
"5432/tcp": "Postgres port" "5432/tcp": "Postgres port"
}, },
"schema": { "schema": {
"CONFIG_LOCATION": "str", "vector.rs_enabled": "bool",
"POSTGRES_DB": "str?", "POSTGRES_DB": "str?",
"POSTGRES_HOST_AUTH_METHOD": "str?", "POSTGRES_HOST_AUTH_METHOD": "str?",
"POSTGRES_INITDB_ARGS": "str?", "POSTGRES_INITDB_ARGS": "str?",