mirror of
https://github.com/dadosfera/maestro.git
synced 2026-08-31 19:58:21 +00:00
29 lines
735 B
YAML
29 lines
735 B
YAML
services:
|
|
maestro:
|
|
image: dadosfera/maestro_${ENV}:${IMAGE_TAG}
|
|
container_name: maestro
|
|
restart: always
|
|
ports:
|
|
- 3333:3333
|
|
env_file:
|
|
- .env
|
|
|
|
node_exporter:
|
|
image: ${NODE_EXPORTER_URL}
|
|
container_name: node_exporter
|
|
restart: always
|
|
volumes:
|
|
- /proc:/host/proc:ro
|
|
- /sys:/host/sys:ro
|
|
- /:/rootfs:ro
|
|
- /run/dbus/system_bus_socket:/var/run/dbus/system_bus_socket:ro
|
|
command:
|
|
- '--path.procfs=/host/proc'
|
|
- '--path.rootfs=/rootfs'
|
|
- '--path.sysfs=/host/sys'
|
|
- '--collector.filesystem.ignored-mount-points=^/(sys|proc|dev|host|etc)($$|/)'
|
|
- '--collector.systemd'
|
|
- '--collector.processes'
|
|
network_mode: host
|
|
pid: host
|