First build

This commit is contained in:
Alexandre
2023-05-27 20:03:00 +02:00
parent 11af0818c3
commit 7351a428bc
14 changed files with 1028 additions and 0 deletions

39
postgres/config.json Normal file
View File

@@ -0,0 +1,39 @@
{
"arch": [
"aarch64",
"amd64",
"armv7"
],
"codenotary": "alexandrep.github@gmail.com",
"description": "Postgres 15",
"environment": {
"PGDATA": "/data"
},
"image": "ghcr.io/alexbelgium/postgres-{arch}",
"map": [
"config:rw"
],
"name": "Postgres",
"options": {
"CONFIG_LOCATION": "/config/addons_config/postgres/postgresql.conf",
"POSTGRES_PASSWORD": "homeassistant"
},
"ports": {
"5432/tcp": 5432
},
"ports_description": {
"5900/tcp": "Postgres port"
},
"schema": {
"CONFIG_LOCATION": "str",
"POSTGRES_PASSWORD": "str",
"POSTGRES_USER": "str?",
"POSTGRES_DB": "str?",
"POSTGRES_INITDB_ARGS": "str?",
"POSTGRES_HOST_AUTH_METHOD": "str?"
},
"slug": "postgres",
"url": "https://github.com/alexbelgium/hassio-addons",
"version": "1.4",
"webui": "[PROTO:ssl]://[HOST]:[PORT:5432]"
}