mirror of
https://github.com/buanet/ioBroker.docker.git
synced 2026-01-07 08:22:55 +02:00
ignore errors in silent cleanup
This commit is contained in:
@@ -1,11 +1,13 @@
|
|||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
### v9.0.0-beta.1 (coming soon)
|
### v9.0.0-beta.1 (coming soon)
|
||||||
|
* ignore errors in "silent cleanup" on first start ([#369](https://github.com/buanet/ioBroker.docker/issues/369))
|
||||||
* cleanup/ restructure repo
|
* cleanup/ restructure repo
|
||||||
* update nodejs setup process
|
* update nodejs setup process
|
||||||
* update base image to debian 12 (bookworm)
|
* update base image to debian 12 (bookworm)
|
||||||
* improve security by avoiding running commands as root
|
* improve security by avoiding root (exept startup script itself)
|
||||||
* integrate calling maintenance script into iobroker command
|
* restrict iobroker commanline commands (start/ stop)
|
||||||
|
* integrate maintenance script into iobroker command
|
||||||
* move container config files location
|
* move container config files location
|
||||||
|
|
||||||
### v8.1.0-beta.4 (29.07.2023)
|
### v8.1.0-beta.4 (29.07.2023)
|
||||||
|
|||||||
@@ -78,6 +78,6 @@ fi
|
|||||||
|
|
||||||
# Silent Cleanup
|
# Silent Cleanup
|
||||||
apt-get -qq autoclean -y && apt-get -qq autoremove && apt-get -qq clean
|
apt-get -qq autoclean -y && apt-get -qq autoremove && apt-get -qq clean
|
||||||
rm -rf /tmp/* /var/tmp/* /root/.cache/* /var/lib/apt/lists/*
|
rm -rf /tmp/* /var/tmp/* /root/.cache/* /var/lib/apt/lists/* || true
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
Reference in New Issue
Block a user