NextCloud Docker Manager

Easily deploy and manage your Nextcloud instance with Docker

Deploy Nextcloud with Docker

Run this command to deploy Nextcloud in a Docker container:

docker run -d \
  -p 8081:80 \
  -v nextcloud-data:/var/www/html \
  nextcloud

Port Mapping

Port 8081 on your host is mapped to port 80 in the container.

Volume Mapping

Data is persisted in a Docker volume named nextcloud-data.