13 lines
465 B
YAML
13 lines
465 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
|
|
portainer_agent: #Portainer is a web UI for managing your docker containers. This container is just the agent which you need to pair with the portainer-ce host container https://www.portainer.io/
|
|
image: portainer/agent:2.19.3
|
|
container_name: portainer_agent
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- /var/lib/docker/volumes:/var/lib/docker/volumes
|
|
ports:
|
|
- "9001:9001"
|
|
restart: always
|