mirror of
https://github.com/hassio-addons/repository-edge.git
synced 2025-05-05 03:31:36 +00:00
🎉 Release of add-on Bookstack 0.8.0
This commit is contained in:
parent
f5b4cde3b6
commit
5885a8d48a
5 changed files with 53 additions and 31 deletions
|
@ -1,31 +1,22 @@
|
|||
# Changelog since v0.7.0
|
||||
- 📚 Fix commit activity (#34)
|
||||
- Fix add-on description extraction (#33)
|
||||
- 📚 Documentation updates (#31)
|
||||
|
||||
* 📚 Update to Github Actions
|
||||
## What’s changed
|
||||
|
||||
* 📚 Maintenance year
|
||||
## ✨ New features
|
||||
|
||||
* 📚 Doc tweaks
|
||||
- 📚 Update Code of Conduct (#28)
|
||||
- 🔨 Remove no longer needed gitlab config (#29)
|
||||
- ⬆ Update image to 9.0.1 and package dependencies (#30)
|
||||
|
||||
* 🔨 Update base image to v9.0.1
|
||||
- ✨ Add envvars option to configuration @sinclairpaul (#32)
|
||||
|
||||
* 📚 Update image labels
|
||||
## 🧰 Maintenance
|
||||
|
||||
* ⬆ Update nginx to 1.18.0-r13
|
||||
- 🔨 Update CI @sinclairpaul (#25)
|
||||
- 📚 Update year @sinclairpaul (#27)
|
||||
- 🔨 Remove no longer needed gitlab config @sinclairpaul (#29)
|
||||
- 📚 Update Code of Conduct @sinclairpaul (#28)
|
||||
- Fix add-on description extraction @frenck (#33)
|
||||
|
||||
* ⬆ Update mariadb-client to 10.5.8-r0
|
||||
## 📚 Documentation
|
||||
|
||||
* ⬆ Update php to 7.4.14-r0
|
||||
- 📚 Documentation updates @sinclairpaul (#31)
|
||||
- 📚 Fix commit activity @sinclairpaul (#34)
|
||||
|
||||
* ⬆ Update composer to 2.0.8-r0
|
||||
- 📚 Update year (#27)
|
||||
- 🔨 Update CI (#25)
|
||||
|
||||
Co-authored-by: Franck Nijhof <frenck@frenck.nl>
|
||||
Co-authored-by: sinclairpaul <sinclairpaul@users.noreply.github.com>
|
||||
- ⬆ Update Bookstack to v0.31.4
|
||||
## ⬆️ Dependency updates
|
||||
|
||||
- ⬆ Update image to 9.0.1 and package dependencies @sinclairpaul (#30)
|
||||
|
|
|
@ -25,6 +25,9 @@ log_level: info
|
|||
ssl: false
|
||||
certfile: fullchain.pem
|
||||
keyfile: privkey.pem
|
||||
envvars:
|
||||
- name: SESSION_COOKIE_NAME
|
||||
value: bookstack_session
|
||||
```
|
||||
|
||||
**Note**: _This is just an example, don't copy and paste it! Create your own!_
|
||||
|
@ -91,6 +94,27 @@ Only applies if a remote MYSQL database is used, the password of the above user.
|
|||
Only applies if a remote MYSQL database is used, the port that the database
|
||||
server is listening on.
|
||||
|
||||
### Option: `envvars`
|
||||
|
||||
This allows the setting of Environment Variables to control Bookstack
|
||||
configuration as documented at:
|
||||
|
||||
<https://www.bookstackapp.com/docs/>
|
||||
|
||||
**Note**: _Changing these options can possibly cause issues with you instance.
|
||||
USE AT YOUR OWN RISK!_
|
||||
|
||||
These are case sensitive and any items set by specific configuration will take
|
||||
precedence.
|
||||
|
||||
#### Sub-option: `name`
|
||||
|
||||
The name of the environment variable to set.
|
||||
|
||||
#### Sub-option: `value`
|
||||
|
||||
The value of the environment variable to set.
|
||||
|
||||
## Database usage
|
||||
|
||||
By default, Bookstack will automatically use and configure the Home Assistant
|
||||
|
|
|
@ -42,6 +42,6 @@ If you are more interested in stable releases of our add-ons:
|
|||
[forum]: https://community.home-assistant.io/?u=frenck
|
||||
[maintenance-shield]: https://img.shields.io/maintenance/yes/2021.svg
|
||||
[project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg
|
||||
[release-shield]: https://img.shields.io/badge/version-0423521-blue.svg
|
||||
[release]: https://github.com/hassio-addons/addon-bookstack/tree/0423521
|
||||
[release-shield]: https://img.shields.io/badge/version-v0.8.0-blue.svg
|
||||
[release]: https://github.com/hassio-addons/addon-bookstack/tree/v0.8.0
|
||||
[screenshot]: https://github.com/hassio-addons/addon-bookstack/raw/master/images/screenshot.png
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Bookstack",
|
||||
"version": "0423521",
|
||||
"version": "0.8.0",
|
||||
"slug": "bookstack",
|
||||
"description": "Simple & Free Wiki Software",
|
||||
"url": "https://github.com/hassio-addons/addon-bookstack",
|
||||
|
@ -27,6 +27,7 @@
|
|||
"80/tcp": "Web interface"
|
||||
},
|
||||
"options": {
|
||||
"envvars": [],
|
||||
"ssl": false,
|
||||
"certfile": "fullchain.pem",
|
||||
"keyfile": "privkey.pem"
|
||||
|
@ -41,7 +42,13 @@
|
|||
"log_level": "list(trace|debug|info|notice|warning|error|fatal)?",
|
||||
"certfile": "str",
|
||||
"keyfile": "str",
|
||||
"ssl": "bool"
|
||||
"ssl": "bool",
|
||||
"envvars": [
|
||||
{
|
||||
"name": "str",
|
||||
"value": "str"
|
||||
}
|
||||
]
|
||||
},
|
||||
"image": "ghcr.io/hassio-addons/bookstack/{arch}"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue