forked from alexbelgium/hassio-addons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
41 lines (41 loc) · 908 Bytes
/
config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"arch": [
"aarch64",
"amd64",
"armv7"
],
"backup": "cold",
"codenotary": "[email protected]",
"description": "Postgres 15 with pgvecto.rs support",
"environment": {
"CONFIG_LOCATION": "/config/postgresql.conf",
"PGDATA": "/config/database"
},
"image": "ghcr.io/alexbelgium/postgres-{arch}",
"map": [
"addon_config:rw",
"homeassistant_config:rw",
"media:rw"
],
"name": "Postgres 15",
"options": {
"POSTGRES_PASSWORD": "homeassistant"
},
"ports": {
"5432/tcp": 5432
},
"ports_description": {
"5432/tcp": "Postgres"
},
"schema": {
"POSTGRES_DB": "str?",
"POSTGRES_HOST_AUTH_METHOD": "str?",
"POSTGRES_INITDB_ARGS": "str?",
"POSTGRES_PASSWORD": "str",
"POSTGRES_USER": "str?"
},
"slug": "postgres",
"udev": true,
"url": "https://github.com/alexbelgium/hassio-addons",
"version": "15.5-7"
}