Compare commits
2 commits
83522819c3
...
d26742994a
Author | SHA1 | Date | |
---|---|---|---|
d26742994a | |||
5041c8b092 |
4 changed files with 17 additions and 7 deletions
|
@ -19,9 +19,10 @@ 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
|
||||
|
||||
|
|
|
@ -74,5 +74,3 @@ networks:
|
|||
monitoring:
|
||||
web:
|
||||
external: true
|
||||
dockersocket:
|
||||
external: true
|
||||
|
|
17
start-all.sh
17
start-all.sh
|
@ -1,5 +1,16 @@
|
|||
#/bin/bash/
|
||||
|
||||
for dir in ./*/ ; do
|
||||
(cd "$dir" && echo "[$dir]" && docker-compose up -d);
|
||||
done
|
||||
|
||||
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;
|
||||
|
||||
|
|
|
@ -176,7 +176,7 @@
|
|||
## Setting interfaces will tell it to gather these explicit interfaces,
|
||||
## regardless of status.
|
||||
##
|
||||
interfaces = ["enx001e0636be71"]
|
||||
interfaces = ["enp2s0"]
|
||||
##
|
||||
## On linux systems telegraf also collects protocol stats.
|
||||
## Setting ignore_protocol_stats to true will skip reporting of protocol metrics.
|
||||
|
|
Loading…
Reference in a new issue