The better way to manage your containers
The most intuitive and visually appealing tool for monitoring Docker container logs and managing containers.
docker run -d -p 8123:8123 -v /var/run/docker.sock:/var/run/docker.sock logdeck/logdeckLogs viewing and container management shouldn't be that hard.
Features
Everything you need to manage Docker
01
Real-time Log Streaming
Monitor your container logs in real-time with auto-scroll, timestamps, and color-coded log levels. Search, filter, and download logs with ease.
02
Multi-Host Management
Connect to multiple Docker hosts at once (local Unix sockets, TCP endpoints, or SSH targets) and manage them from a single LogDeck dashboard.
03
Container Management
Start, stop, restart, and remove containers with a single click. View detailed information including environment variables, volumes, and ports.
04
Beautiful Interface
Enjoy a modern, intuitive UI with dark and light mode support. Built with React and Tailwind CSS for a smooth, responsive experience.
05
Optional Authentication
Secure your instance with JWT-based authentication or run completely open. Read-only mode available for safe viewing without modifications.
06
Easy Installation
Deploy with Docker Compose in seconds. Single binary with embedded frontend. No database required. Works with any Docker host.
Beautiful interface, powerful features
A modern, intuitive UI that makes Docker management a breeze

Monitor all your containers at a glance with real-time status updates, system metrics, and quick actions
Get started in seconds
Choose your preferred installation method and start monitoring your containers
Docker Compose (Recommended)
The easiest way to deploy LogDeck with persistent configuration
1. Create a docker-compose.yml file:
version: '3.8'
services:
logdeck:
image: logdeck/logdeck:latest
container_name: logdeck
ports:
- "8123:8123"
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
environment:
# Optional: Enable authentication
# JWT_SECRET: your-super-secret-key-min-32-chars
# ADMIN_USERNAME: admin
# ADMIN_PASSWORD_SALT: your-random-salt-change-this
# ADMIN_PASSWORD: your-sha256-hash
restart: unless-stopped2. Start LogDeck:
docker-compose up -d3. Access the interface:
Open your browser and navigate to http://localhost:8123
Need more details on configuration and advanced setup?
View Full Documentation