Docker management made easy
Portainer is a lightweight management UI that allows you to easily manage your Docker environments. It provides a detailed overview of your containers, images, volumes, and networks, and lets you manage them through a simple web interface instead of the command line.
Visual Docker container management
Stack deployment from compose files
Image and volume management
Container logs and console access
User and team management
Template marketplace
services:
portainer:
image: portainer/portainer-ce:latest
container_name: portainer
ports:
- 9443:9443
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./data:/data
restart: unless-stopped