docker-documentation/images/docker-nextcloud.md

5.4 KiB
Executable File

linuxserver.io

The LinuxServer.io team brings you another container release featuring easy user mapping and community support. Find us for support at:

  • forum.linuxserver.io
  • IRC on freenode at #linuxserver.io
  • Podcast covers everything to do with getting the most from your Linux Server plus a focus on all things Docker and containerisation!

linuxserver/nextcloud

Docker PullsDocker StarsBuild Status

Nextcloud gives you access to all your files wherever you are.

Where are your photos and documents? With Nextcloud you pick a server of your choice, at home, in a data center or at a provider. And that is where your files will be. Nextcloud runs on that server, protecting your data and giving you access from your desktop or mobile devices. Through Nextcloud you also access, sync and share your existing data on that FTP drive at the office, a Dropbox or a NAS you have at home.

nextcloud

Usage

docker create \
	--name nextcloud \
	-p 443:443 \
	-e PUID=<UID> -e PGID=<GID> \
	-v </path/to/appdata>:/config \
	-v <path/to/data>:/data \
	linuxserver/nextcloud

Parameters

The parameters are split into two halves, separated by a colon, the left hand side representing the host and the right the container side. For example with a port -p external:internal - what this shows is the port mapping from internal to external of the container. So -p 8080:80 would expose port 80 from inside the container to be accessible from the host's IP on port 8080 http://192.168.x.x:8080 would show you what's running INSIDE the container on port 80.

  • -p 443 - the port nextcloud web interface
  • -v /config - nextcloud configs
  • -v /data - your personal data
  • -e PGID for for GroupID - see below for explanation
  • -e PUID for for UserID - see below for explanation

It is based on Alpine Linux with s6 overlay, for shell access whilst the container is running do docker exec -it nextcloud /bin/bash

User / Group Identifiers

Sometimes when using data volumes (-v flags) permissions issues can arise between the host OS and the container. We avoid this issue by allowing you to specify the user PUID and group PGID. Ensure the data volume directory on the host is owned by the same user you specify and it will "just work" TM.

In this instance PUID=1001 and PGID=1001. To find yours use id user as below:

  $ id <dockeruser>
    uid=1001(dockeruser) gid=1001(dockergroup) groups=1001(dockergroup)

Setting up the application

Access the webui at <your-ip>:443, for more information check out Nextcloud.

Please note you will need a MySQL/MariaDB or other backend database to set this up. Also please look here for how to configure your database with regard to binlog format and installation.

If updating to nextcloud 12 you will need to comment out line add_header X-Frame-Options "SAMEORIGIN"; in the file /config/nginx/site-confs/default

Info

  • Monitor the logs of the container in realtime docker logs -f nextcloud.

  • container version number

docker inspect -f '{{ index .Config.Labels "build_version" }}' nextcloud

  • image version number

docker inspect -f '{{ index .Config.Labels "build_version" }}' linuxserver/nextcloud

Versions

  • 28.01.19: Add pipeline logic and multi arch.
  • 25.01.19: Add php7-phar for occ upgrades.
  • 05.09.18: Rebase to alpine 3.8.
  • 11.06.18: Use latest rather than specific version for initial install.
  • 26.04.18: Bump default install to 13.0.1.
  • 06.02.18: Bump default install to 13.0.0.
  • 26.01.18: Rebase to alpine 3.7, bump default install to 12.0.5.
  • 12.12.17: Bump default install to 12.0.4, fix continuation lines.
  • 15.10.17: Sed php.ini for opcache requirements in newer nextcloud versions.
  • 20.09.17: Bump default install to 12.0.3.
  • 19.08.17: Bump default install to 12.0.2.
  • 25.05.17: Rebase to alpine 3.6.
  • 22.05.17: Update to nextcloud 12.0, adding required dependecies and note about commenting out SAMEORIGIN; line.
  • 03.05.17: Use community repo of memcached.
  • 07.03.17: Release into main repository and upgrade to php7 and Alpine 3.5.