Skip to content

Commit

Permalink
Update version to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ovk committed Aug 16, 2020
1 parent cac722f commit f90b23a
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
24 changes: 24 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
## [1.0.0] - 2020-08-16

- Add preamble and icon. Improve some sections. Fix typos. [af07d23]
- Move ToC on the left [f7046dd]
- Removed workaround for nextcloud/docker bug #345 as it now fixed [c5e2aef]
- Update Nextcloud to 19.0.1. Fix nextcloud-fpm container. [0121898]
- Put Nextcloud to maintenance mode during backup [3165e48]
- Switch away from Alpine to Debian Docker images [41d46b0]
* All Alpine images replaced with Debian (slim) images.
Note that for two Nextcloud containers (HTTPD and Postgres) the update
requires manual UID/GID update, as Debian uses different UID/GID for
users postgres and www-data. To do the update, stop Nextcloud, and then
run the following commands before starting it again with Debian based
images:
sudo find /srv/nextcloud -uid 82 -exec chown 33 {} \;
sudo find /srv/nextcloud -gid 82 -exec chgrp 33 {} \;
sudo find /srv/nextcloud -uid 70 -exec chown 999 {} \;
sudo find /srv/nextcloud -gid 70 -exec chgrp 999 {} \;
* Apache HTTPD updated to 2.4.46
* Use build-in Docker init (added in Docker 19) instead of Tini
- Set token_auth_enforced parameter in Nextcloud [2226387]
- Bump docker image versions [01ce933]
Postgres: 12.3

## [0.2.0] - 2019-11-17

- Added chapter on Git server configuration. [38fcc2d5]
Expand Down
2 changes: 1 addition & 1 deletion silverbox-server.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
= Silverbox: GNU/Linux Home Server
ovk <https://github.com/ovk[@ovk]>
v0.2.1, December 7, 2019
v1.0.0, August 16, 2020
:homepage: https://github.com/ovk/silverbox
:doctype: article
:reproducible:
Expand Down

0 comments on commit f90b23a

Please sign in to comment.