--- title: Portainer_agent date: 2024-11-16T09:44:03+08:00 lastmod: 2025-11-19T12:14:34+08:00 --- # Portainer_agent ```yaml docker run -d -p 9001:9001 --name portainer_agent --restart=always -v /var/run/docker.sock:/var/run/docker.sock portainer/agent:latest ``` ```yaml version: '3.8' services: portainer_agent: image: portainer/agent:2.21.4 volumes: - /var/run/docker.sock:/var/run/docker.sock - /var/lib/docker/volumes:/var/lib/docker/volumes - /:/host ports: - "9001:9001" restart: always ```   ‍