Files
docker-observation/docker-compose.yml
2025-06-19 12:08:52 -05:00

34 lines
858 B
YAML

services:
portainer-agent:
image: portainer/agent
container_name: portainer_agent
restart: always
ports:
- 9001:9001
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /var/lib/docker/volumes:/var/lib/docker/volumes
telegraf-docker:
image: telegraf
container_name: telegraf-docker
restart: always
uts: host
user: telegraf:${DOCKER_GUID}
env_file:
- .env
volumes:
- ./telegraf/telegraf.conf:/etc/telegraf/telegraf.conf:ro
- /var/run/docker.sock:/var/run/docker.sock
watchtower:
image: containrrr/watchtower
container_name: watchtower
restart: always
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /etc/localtime:/etc/localtime:ro
- /etc/timezone:/etc/timezone:ro
environment:
WATCHTOWER_SCHEDULE: "0 0 3 * * *"