diff --git a/dashboard/docker-compose.yaml b/dashboard/docker-compose.yaml index 40abac3..2e77f6f 100644 --- a/dashboard/docker-compose.yaml +++ b/dashboard/docker-compose.yaml @@ -19,10 +19,9 @@ services: - "traefik.http.routers.heimdall.rule=Host(`dashboard.${DOMAIN}`)" - "traefik.http.routers.heimdall.entrypoints=web" - "traefik.http.services.heimdall.loadbalancer.server.port=80" - - "docker.group=dashboard" + - "docker.group="dashboard" restart: unless-stopped networks: web: external: true - diff --git a/monitoring/docker-compose.yaml b/monitoring/docker-compose.yaml index cc9ce50..86835ae 100644 --- a/monitoring/docker-compose.yaml +++ b/monitoring/docker-compose.yaml @@ -74,3 +74,5 @@ networks: monitoring: web: external: true + dockersocket: + external: true diff --git a/start-all.sh b/start-all.sh index 877c199..3dcbdd6 100755 --- a/start-all.sh +++ b/start-all.sh @@ -1,16 +1,5 @@ #/bin/bash/ - -function up { - (cd "$1" && echo "[$1]" && docker-compose up -d "${@:2}"); -} - -up proxy; -up monitoring; -up telegraf; -up smartHome; -up dashboard; -up downloads; -up portainer; -up torrent; - +for dir in ./*/ ; do + (cd "$dir" && echo "[$dir]" && docker-compose up -d); +done diff --git a/telegraf/telegraf_host.conf b/telegraf/telegraf_host.conf index 4f914aa..6249272 100644 --- a/telegraf/telegraf_host.conf +++ b/telegraf/telegraf_host.conf @@ -176,7 +176,7 @@ ## Setting interfaces will tell it to gather these explicit interfaces, ## regardless of status. ## -interfaces = ["enp2s0"] +interfaces = ["enx001e0636be71"] ## ## On linux systems telegraf also collects protocol stats. ## Setting ignore_protocol_stats to true will skip reporting of protocol metrics.