Title logo
linuxserver/nextcloud.

A Nextcloud container, brought to you by LinuxServer.io.

321,318,994 807 amd64 unknown arm64 unknown

Build Information

General build information for this image

Docker Hub linuxserver/nextcloud
Build Time 15 May 2025 13:15:54
Synchronised Yes
Stable Yes
Deprecated No

Tracked Tags

Known tags which link to a specific branched app version.

Branch Version Built
latest latest 15 May 2025 at 13:14:47

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  nextcloud:
    image: linuxserver/nextcloud:latest
    container_name: nextcloud
    restart: no

CLI

docker create \
  --name=nextcloud \  --restart no \
  linuxserver/nextcloud:latest