mirror of
https://github.com/hassio-addons/repository-edge.git
synced 2025-05-05 03:31:36 +00:00
⬆️ Updating add-on phpMyAdmin to e0dbb39
This commit is contained in:
parent
e6075bf705
commit
417c9c455c
5 changed files with 15 additions and 6 deletions
|
@ -1065,10 +1065,10 @@ SOFTWARE.
|
||||||
[motioneye-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
|
[motioneye-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
|
||||||
[motioneye-armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg
|
[motioneye-armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg
|
||||||
[motioneye-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
|
[motioneye-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
|
||||||
[addon-phpmyadmin]: https://github.com/hassio-addons/addon-phpmyadmin/tree/9251d7d
|
[addon-phpmyadmin]: https://github.com/hassio-addons/addon-phpmyadmin/tree/e0dbb39
|
||||||
[addon-doc-phpmyadmin]: https://github.com/hassio-addons/addon-phpmyadmin/blob/9251d7d/README.md
|
[addon-doc-phpmyadmin]: https://github.com/hassio-addons/addon-phpmyadmin/blob/e0dbb39/README.md
|
||||||
[phpmyadmin-issue]: https://github.com/hassio-addons/addon-phpmyadmin/issues
|
[phpmyadmin-issue]: https://github.com/hassio-addons/addon-phpmyadmin/issues
|
||||||
[phpmyadmin-version-shield]: https://img.shields.io/badge/version-9251d7d-blue.svg
|
[phpmyadmin-version-shield]: https://img.shields.io/badge/version-e0dbb39-blue.svg
|
||||||
[phpmyadmin-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
|
[phpmyadmin-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
|
||||||
[phpmyadmin-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
|
[phpmyadmin-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
|
||||||
[phpmyadmin-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
|
[phpmyadmin-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
# Changelog since v0.6.0
|
# Changelog since v0.6.0
|
||||||
|
- 🔨 Add Upload limit option (#117)
|
||||||
|
|
||||||
|
Co-authored-by: Franck Nijhof <frenck@frenck.nl>
|
||||||
- ⬆️ Upgrades add-on base image to 11.0.1 (#119)
|
- ⬆️ Upgrades add-on base image to 11.0.1 (#119)
|
||||||
- 🎆 Updates maintenance/license year to 2022 (#120)
|
- 🎆 Updates maintenance/license year to 2022 (#120)
|
||||||
- ⬆️ Upgrades php8 to 8.0.14-r0 (#118)
|
- ⬆️ Upgrades php8 to 8.0.14-r0 (#118)
|
||||||
|
|
|
@ -30,6 +30,11 @@ log_level: info
|
||||||
|
|
||||||
**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!_
|
||||||
|
|
||||||
|
### Option: `upload_limit`
|
||||||
|
|
||||||
|
By default, the size limit for uploads (for operations such as imports) is set to
|
||||||
|
64MB. This can be increased with this option, for example, `100` would be 100MB.
|
||||||
|
|
||||||
### Option: `log_level`
|
### Option: `log_level`
|
||||||
|
|
||||||
The `log_level` option controls the level of log output by the addon and can
|
The `log_level` option controls the level of log output by the addon and can
|
||||||
|
|
|
@ -51,6 +51,6 @@ If you are more interested in stable releases of our add-ons:
|
||||||
[patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png
|
[patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png
|
||||||
[patreon]: https://www.patreon.com/frenck
|
[patreon]: https://www.patreon.com/frenck
|
||||||
[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-9251d7d-blue.svg
|
[release-shield]: https://img.shields.io/badge/version-e0dbb39-blue.svg
|
||||||
[release]: https://github.com/hassio-addons/addon-phpmyadmin/tree/9251d7d
|
[release]: https://github.com/hassio-addons/addon-phpmyadmin/tree/e0dbb39
|
||||||
[screenshot]: https://github.com/hassio-addons/addon-phpmyadmin/raw/main/images/screenshot.png
|
[screenshot]: https://github.com/hassio-addons/addon-phpmyadmin/raw/main/images/screenshot.png
|
|
@ -14,8 +14,9 @@ name: phpMyAdmin
|
||||||
panel_icon: mdi:database
|
panel_icon: mdi:database
|
||||||
schema:
|
schema:
|
||||||
log_level: list(trace|debug|info|notice|warning|error|fatal)?
|
log_level: list(trace|debug|info|notice|warning|error|fatal)?
|
||||||
|
upload_limit: int?
|
||||||
services:
|
services:
|
||||||
- mysql:need
|
- mysql:need
|
||||||
slug: phpmyadmin
|
slug: phpmyadmin
|
||||||
url: https://github.com/hassio-addons/addon-phpmyadmin
|
url: https://github.com/hassio-addons/addon-phpmyadmin
|
||||||
version: 9251d7d
|
version: e0dbb39
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue