Storage UI is a standard Next.js application and can be deployed to Vercel, Docker, or a traditional server. Choose a deployment method below to view its setup instructions.
Docker
A prebuilt image is published on Docker Hub. Pull it:
docker pull hahahumble/storageuiCreate a .env file with the environment variables, then run the container:
docker run -d \
--name storage-ui \
--restart unless-stopped \
-p 3000:3000 \
--env-file .env \
hahahumble/storageuiThis image can also be deployed to Docker-compatible platforms such as Fly.io, Render, and Coolify.