This commit is contained in:
Alexandre
2021-10-23 15:23:13 +02:00
2 changed files with 7 additions and 1 deletions

View File

@@ -23,6 +23,9 @@
], ],
"name": "Webtrees", "name": "Webtrees",
"options": { "options": {
"ssl": false,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem",
"LANG": "en-US", "LANG": "en-US",
"BASE_URL": "http://192.168.178.69", "BASE_URL": "http://192.168.178.69",
"DB_TYPE": "sqlite" "DB_TYPE": "sqlite"
@@ -36,6 +39,9 @@
"443/tcp": "Https web interface" "443/tcp": "Https web interface"
}, },
"schema": { "schema": {
"ssl": "bool",
"certfile": "str",
"keyfile": "str",
"LANG": "str", "LANG": "str",
"BASE_URL": "url", "BASE_URL": "url",
"DB_TYPE": "list(sqlite|external)" "DB_TYPE": "list(sqlite|external)"

View File

@@ -95,7 +95,7 @@ chown -R www-data:www-data /data/webtrees
# Execute main script # Execute main script
cd / cd /
./docker-entrypoint.sh >/dev/null ./docker-entrypoint.sh
############ ############
# END INFO # # END INFO #