Open the server Apps tab
Select the tutorial-vps VPS, open the Apps tab, and start a new app deployment. Keep sensitive server details hidden before capturing or sharing screenshots.

Real-time Docker container log viewer with a beautiful web interface
Add your server credentials to Server Compass
Choose from our template library
Fill in settings and click Deploy
Use the Dozzle template in Server Compass to deploy a real-time Docker log viewer on your VPS, then verify the web UI in a browser.
Select the tutorial-vps VPS, open the Apps tab, and start a new app deployment. Keep sensitive server details hidden before capturing or sharing screenshots.

Click New App and choose the template deployment path so Server Compass can load the built-in catalog.

Use the template picker search to find Dozzle in the Server Compass template catalog.

Choose the Dozzle template. Server Compass fills the log viewer service, read-only Docker socket mount, and public port.

Confirm the app name and compose service. In this run, the app was named dozzle-demo and used host port 3001.

Review the generated compose settings, confirm the Dozzle web port is available, and click Deploy.

Keep the deployment modal open while Server Compass uploads the compose file, pulls the Dozzle image, starts the container, and verifies the stack.

After deployment finishes, return to the Apps tab and confirm the Dozzle app is marked Running with its application URL available.

Open the application URL in a browser. The Dozzle web UI confirms the Docker log viewer is reachable.

The Dozzle web interface loaded successfully and displayed the container log viewer.
It deploys the Dozzle container with a read-only Docker socket mount and a public web port.
The tutorial used host port 3001, which maps to the Dozzle web UI on container port 8080.
The template mounts the Docker socket read-only. Dozzle is intended for viewing logs, not changing containers.
No. The deployment guide should live on the Dozzle template detail page and be linked from the reusable template deployment docs page.
Deploy Dozzle the traditional way with SSH and Docker Compose.
Begin by establishing a secure connection to your server through the terminal.
# Access your VPS
ssh root@YOUR_SERVER_IP
# With SSH key authentication
ssh -i ~/.ssh/your-private-key root@YOUR_SERVER_IPFirst time? Ensure Docker is installed first: curl -fsSL https://get.docker.com | sh
Create a dedicated folder for your application files.
# Create and navigate to project directory
mkdir -p ~/apps/dozzle
cd ~/apps/dozzleCreate the following docker-compose.yml in your project directory:
services:
dozzle:
image: amir20/dozzle:latest
ports:
- "8080:8080"
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
restart: unless-stopped
PORTHost port to expose(default: 8080)Run Docker Compose to launch your application.
# Launch the stack
docker compose up -d
# Verify container status
docker compose ps
# Follow the logs
docker compose logs --followConfigure UFW to allow traffic to your application.
# Allow the application port through firewall
sudo ufw allow 8080/tcp
sudo ufw reload
# Access your app at:
# http://your-server-ip:8080Server Compass makes deploying Dozzle effortless. Visual setup, one-click deploy, done.
After deploying Dozzle with Server Compass, complete these steps to finish setup
Open the Dozzle URL in your browser
View real-time logs from all running containers
Use filters to find specific log entries
Need help? Check out our documentation for detailed guides.
Common questions about self-hosting Dozzle
Simply download Server Compass, connect to your VPS, and select Dozzle from the templates list. Fill in the required configuration and click Deploy. The entire process takes under 3 minutes.
Dozzle requires a minimum of 64MB RAM. We recommend a VPS with at least 1024MB RAM for optimal performance. Any modern Linux server with Docker support will work.
Yes! Server Compass provides volume mapping that allows you to import existing data. You can also use standard Dozzle backup and restore procedures.
Server Compass makes updates easy. Simply click the Update button in your deployment dashboard, and the latest Dozzle image will be pulled and deployed with zero downtime.
Dozzle is open-source software. You only pay for your VPS hosting (typically $5-20/month) and optionally Server Compass ($29 one-time). No subscription fees or per-seat pricing.
Download Server Compass and deploy Dozzle to your VPS in under 3 minutes. No Docker expertise required.
Download Server Compass