Cloudreve

A self-hosted cloud storage with file management, multi-user roles, and WebDAV support.

Access Cloudreve

  • Visit: http://<SERVER_IP>:5212
  • Create your account.
  • The first account created becomes the admin user.

Ports in Use

  • Cloudreve UI: 5212/TCP (main web interface)
  • Transfer: 6888/TCP (file transfer channel)
  • Transfer: 6888/UDP (UDP acceleration)

Important Files and Directories

  • Installation directory: /root/cloudreve
  • Docker Compose configuration: /root/cloudreve/docker-compose.yml
  • Persistent data: /var/lib/docker/volumes/ (cloudreve_backend_data/, cloudreve_database_postgres/, cloudreve_redis_data/)

Managing the Stack

Check containers:

cd /root/cloudreve
docker compose ps

View logs:

cd /root/cloudreve
docker compose logs -f

Restart services:

cd /root/cloudreve
docker compose restart

Upgrading Cloudreve

The recommended upgrade steps:

cd /root/cloudreve
# Shut down the currently running containers
docker compose down
# Update the Cloudreve image
docker compose pull
# Start new containers
docker compose up -d

Application Details