fix(bookstack): use APP_DOMAIN instead of APP_PROTOCOL

This commit is contained in:
Nicolas Meienberger 2023-05-17 21:18:29 +02:00
parent e6fd941262
commit 3e21db7c8a
2 changed files with 5 additions and 7 deletions

View File

@ -5,14 +5,12 @@
"exposable": true, "exposable": true,
"port": 8119, "port": 8119,
"id": "bookstack", "id": "bookstack",
"tipi_version": 7, "tipi_version": 8,
"version": "23.05.20230503", "version": "23.05.20230503",
"description": "BookStack is a simple, self-hosted, easy-to-use platform for organising and storing information. Default login: admin@admin.com password: password", "description": "BookStack is a simple, self-hosted, easy-to-use platform for organising and storing information. Default login: admin@admin.com password: password",
"short_desc": "BookStack is a self-hosted platform for organising and storing information.", "short_desc": "BookStack is a self-hosted platform for organising and storing information.",
"author": "Dan Brown", "author": "Dan Brown",
"categories": [ "categories": ["data"],
"data"
],
"website": "https://www.bookstackapp.com/", "website": "https://www.bookstackapp.com/",
"source": "https://github.com/BookStackApp/BookStack", "source": "https://github.com/BookStackApp/BookStack",
"form_fields": [ "form_fields": [

View File

@ -1,10 +1,10 @@
version: "3.7" version: '3.7'
services: services:
bookstack: bookstack:
image: lscr.io/linuxserver/bookstack:23.05.20230503 image: lscr.io/linuxserver/bookstack:23.05.20230503
container_name: bookstack container_name: bookstack
environment: environment:
- APP_URL=http://${INTERNAL_IP}:${APP_PORT} - APP_URL=${APP_PROTOCOL:-http}://${APP_DOMAIN}
- DB_HOST=bookstack-db - DB_HOST=bookstack-db
- DB_USERNAME=tipi - DB_USERNAME=tipi
- DB_PASSWORD=${BOOKSTACK_DB_PASS} - DB_PASSWORD=${BOOKSTACK_DB_PASS}