mirror of
https://github.com/hassio-addons/repository-edge.git
synced 2025-05-06 04:01:25 +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
|
@ -848,10 +848,10 @@ SOFTWARE.
|
||||||
[bitwarden-armhf-shield]: https://img.shields.io/badge/armhf-no-red.svg
|
[bitwarden-armhf-shield]: https://img.shields.io/badge/armhf-no-red.svg
|
||||||
[bitwarden-armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg
|
[bitwarden-armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg
|
||||||
[bitwarden-i386-shield]: https://img.shields.io/badge/i386-no-red.svg
|
[bitwarden-i386-shield]: https://img.shields.io/badge/i386-no-red.svg
|
||||||
[addon-bookstack]: https://github.com/hassio-addons/addon-bookstack/tree/0423521
|
[addon-bookstack]: https://github.com/hassio-addons/addon-bookstack/tree/v0.8.0
|
||||||
[addon-doc-bookstack]: https://github.com/hassio-addons/addon-bookstack/blob/0423521/README.md
|
[addon-doc-bookstack]: https://github.com/hassio-addons/addon-bookstack/blob/v0.8.0/README.md
|
||||||
[bookstack-issue]: https://github.com/hassio-addons/addon-bookstack/issues
|
[bookstack-issue]: https://github.com/hassio-addons/addon-bookstack/issues
|
||||||
[bookstack-version-shield]: https://img.shields.io/badge/version-0423521-blue.svg
|
[bookstack-version-shield]: https://img.shields.io/badge/version-v0.8.0-blue.svg
|
||||||
[bookstack-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
|
[bookstack-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
|
||||||
[bookstack-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
|
[bookstack-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
|
||||||
[bookstack-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
|
[bookstack-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
|
||||||
|
|
|
@ -1,31 +1,22 @@
|
||||||
# Changelog since v0.7.0
|
## What’s changed
|
||||||
- 📚 Fix commit activity (#34)
|
|
||||||
- Fix add-on description extraction (#33)
|
|
||||||
- 📚 Documentation updates (#31)
|
|
||||||
|
|
||||||
* 📚 Update to Github Actions
|
## ✨ New features
|
||||||
|
|
||||||
* 📚 Maintenance year
|
- ✨ Add envvars option to configuration @sinclairpaul (#32)
|
||||||
|
|
||||||
* 📚 Doc tweaks
|
## 🧰 Maintenance
|
||||||
- 📚 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
|
- 🔨 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 image labels
|
## 📚 Documentation
|
||||||
|
|
||||||
* ⬆ Update nginx to 1.18.0-r13
|
- 📚 Documentation updates @sinclairpaul (#31)
|
||||||
|
- 📚 Fix commit activity @sinclairpaul (#34)
|
||||||
|
|
||||||
* ⬆ Update mariadb-client to 10.5.8-r0
|
## ⬆️ Dependency updates
|
||||||
|
|
||||||
* ⬆ Update php to 7.4.14-r0
|
- ⬆ Update image to 9.0.1 and package dependencies @sinclairpaul (#30)
|
||||||
|
|
||||||
* ⬆ 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
|
|
||||||
|
|
|
@ -25,6 +25,9 @@ log_level: info
|
||||||
ssl: false
|
ssl: false
|
||||||
certfile: fullchain.pem
|
certfile: fullchain.pem
|
||||||
keyfile: privkey.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!_
|
**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
|
Only applies if a remote MYSQL database is used, the port that the database
|
||||||
server is listening on.
|
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
|
## Database usage
|
||||||
|
|
||||||
By default, Bookstack will automatically use and configure the Home Assistant
|
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
|
[forum]: https://community.home-assistant.io/?u=frenck
|
||||||
[maintenance-shield]: https://img.shields.io/maintenance/yes/2021.svg
|
[maintenance-shield]: https://img.shields.io/maintenance/yes/2021.svg
|
||||||
[project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.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-shield]: https://img.shields.io/badge/version-v0.8.0-blue.svg
|
||||||
[release]: https://github.com/hassio-addons/addon-bookstack/tree/0423521
|
[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
|
[screenshot]: https://github.com/hassio-addons/addon-bookstack/raw/master/images/screenshot.png
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "Bookstack",
|
"name": "Bookstack",
|
||||||
"version": "0423521",
|
"version": "0.8.0",
|
||||||
"slug": "bookstack",
|
"slug": "bookstack",
|
||||||
"description": "Simple & Free Wiki Software",
|
"description": "Simple & Free Wiki Software",
|
||||||
"url": "https://github.com/hassio-addons/addon-bookstack",
|
"url": "https://github.com/hassio-addons/addon-bookstack",
|
||||||
|
@ -27,6 +27,7 @@
|
||||||
"80/tcp": "Web interface"
|
"80/tcp": "Web interface"
|
||||||
},
|
},
|
||||||
"options": {
|
"options": {
|
||||||
|
"envvars": [],
|
||||||
"ssl": false,
|
"ssl": false,
|
||||||
"certfile": "fullchain.pem",
|
"certfile": "fullchain.pem",
|
||||||
"keyfile": "privkey.pem"
|
"keyfile": "privkey.pem"
|
||||||
|
@ -41,7 +42,13 @@
|
||||||
"log_level": "list(trace|debug|info|notice|warning|error|fatal)?",
|
"log_level": "list(trace|debug|info|notice|warning|error|fatal)?",
|
||||||
"certfile": "str",
|
"certfile": "str",
|
||||||
"keyfile": "str",
|
"keyfile": "str",
|
||||||
"ssl": "bool"
|
"ssl": "bool",
|
||||||
|
"envvars": [
|
||||||
|
{
|
||||||
|
"name": "str",
|
||||||
|
"value": "str"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"image": "ghcr.io/hassio-addons/bookstack/{arch}"
|
"image": "ghcr.io/hassio-addons/bookstack/{arch}"
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue