dockpeek is a simple tool that shows Docker container ports mapped to host ports.
- Displays Docker container port mappings
- Shows container status
- Search containers by name and image
- Dark mode (night mode) support
- Lightweight and easy to deploy with Docker
- User login support
Run dockpeek quickly with Docker Compose using the following configuration:
services:
dockpeek:
image: ghcr.io/dockpeek/dockpeek:latest
container_name: dockpeek
ports:
- "3420:8000"
environment:
- SECRET_KEY=my_secret_key
- USERNAME=admin # Set username for login
- PASSWORD=admin # Set password for login
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
restart: unless-stopped