Portainer Docker Container
A must have for running Docker. Shows all your containers, images, and volumes. It lets you stop and start the containers and shows the ports that they are running on.
Here's its docker-compose.yml:
services: portainer: container_name: portainer image: portainer/portainer-ce:lts restart: no volumes: - /var/run/docker.sock:/var/run/docker.sock - portainer_data:/data ports: - 9443:9443 #- 8000:8000 # Optional: only needed if you plan to use the Edge Agent volumes: portainer_data: name: portainer_dataThis is a screen grab of the Portainer web page.
Comments