-
-
Notifications
You must be signed in to change notification settings - Fork 244
/
Copy pathconfig.json
42 lines (42 loc) · 952 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
42
{
"arch": [
"aarch64",
"amd64",
"armv7"
],
"backup": "cold",
"codenotary": "alexandrep.github@gmail.com",
"description": "Postgres 15 with pgvecto.rs support",
"environment": {
"CONFIG_LOCATION": "/config/postgresql.conf",
"PGDATA": "/config/database"
},
"image": "ghcr.io/alexbelgium/postgres-{arch}",
"init": false,
"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": "password",
"POSTGRES_USER": "str?"
},
"slug": "postgres",
"udev": true,
"url": "https://github.com/alexbelgium/hassio-addons/tree/master/postgres",
"version": "15.7-16"
}