summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosh Richards <josh.t.richards@gmail.com>2023-10-24 17:16:01 -0400
committerGitHub <noreply@github.com>2023-10-24 17:16:01 -0400
commitaaeecafbe712e2f5dbafebaf1a54b6e2c6939534 (patch)
treedfb3420c6d9812e1460a518021975723234289cc
parentbc963e038289cb4fd3939849f9d78a471be9457c (diff)
(README) Add note about Alpine based image compatibilityjr-readme-alpine
Alpine based images are not supported by OnlyOffice or Nextcloud Office. Fixes #1041 + some mingled in reports elsewhere like: - https://github.com/nextcloud/docker/issues/1896#issuecomment-1601117063 Signed-off-by: Josh Richards <josh.t.richards@gmail.com>
-rw-r--r--README.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/README.md b/README.md
index a4592d70..15c0b4f4 100644
--- a/README.md
+++ b/README.md
@@ -46,6 +46,12 @@ $ docker run -d nextcloud:fpm
As the fastCGI-Process is not capable of serving static files (style sheets, images, ...), the webserver needs access to these files. This can be achieved with the `volumes-from` option. You can find more information in the [docker-compose section](#running-this-image-with-docker-compose).
+### Alpine image variant
+
+Alpine variants of the fpm image are available by appending `-alpine` to the tag - e.g. `nextcloud:stable-fpm-alpine`.
+
+**Beware that Alpine variants can have incompatibilities with some applications**. For example, Alpine images do not meet the [system requirements for OnlyOffice](https://github.com/nextcloud/documentserver_community#requirements) nor [Nextcloud Office (CODE/Collabora)](https://github.com/CollaboraOnline/richdocumentscode#system-requirements) due to Alpine's use of *musl libc*.
+
## Using an external database
By default, this container uses SQLite for data storage but the Nextcloud setup wizard (appears on first run) allows connecting to an existing MySQL/MariaDB or PostgreSQL database. You can also link a database container, e. g. `--link my-mysql:mysql`, and then use `mysql` as the database host on setup. More info is in the docker-compose section.