Easily deploy and manage your Nextcloud instance 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 8081 on your host is mapped to port 80 in the container.
Data is persisted in a Docker volume named nextcloud-data.