You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
386 B
19 lines
386 B
version: '3'
|
|
|
|
services:
|
|
|
|
telegraf:
|
|
image: telegraf
|
|
container_name: telegraf
|
|
restart: always
|
|
volumes:
|
|
- ./telegraf:/etc/telegraf
|
|
- /sys:/rootfs/sys:ro
|
|
- /proc:/rootfs/proc:ro
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
environment:
|
|
- 'HOST_PROC=/rootfs/proc'
|
|
- 'HOST_SYS=/rootfs/sys'
|
|
- /etc/localtime:/etc/localtime:ro
|
|
|