Disable test service whoami
This commit is contained in:
parent
77312ecd70
commit
c817a4eaf3
2 changed files with 13 additions and 12 deletions
|
@ -79,17 +79,17 @@ services:
|
||||||
privileged: true
|
privileged: true
|
||||||
|
|
||||||
|
|
||||||
whoami:
|
# whoami:
|
||||||
image: traefik/whoami
|
# image: traefik/whoami
|
||||||
networks:
|
# networks:
|
||||||
- web
|
# - web
|
||||||
labels:
|
# labels:
|
||||||
- "traefik.enable=true"
|
# - "traefik.enable=true"
|
||||||
- "traefik.http.routers.whoami.rule=Host(`whoami.${DOMAIN}`)"
|
# - "traefik.http.routers.whoami.rule=Host(`whoami.${DOMAIN}`)"
|
||||||
- "traefik.http.routers.whoami.entrypoints=websecure"
|
# - "traefik.http.routers.whoami.entrypoints=websecure"
|
||||||
- "traefik.http.routers.whoami.tls.certresolver=netcup"
|
# - "traefik.http.routers.whoami.tls.certresolver=netcup"
|
||||||
- "docker.group=proxy"
|
# - "docker.group=proxy"
|
||||||
restart: unless-stopped
|
# restart: unless-stopped
|
||||||
|
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
|
|
|
@ -4,7 +4,8 @@ function up {
|
||||||
(cd "$1" && echo "[$1]" && docker compose up -d "${@:2}");
|
(cd "$1" && echo "[$1]" && docker compose up -d "${@:2}");
|
||||||
}
|
}
|
||||||
|
|
||||||
up proxy --scale whoami=3;
|
#up proxy --scale whoami=3;
|
||||||
|
up proxy;
|
||||||
up monitoring;
|
up monitoring;
|
||||||
up nextcloud;
|
up nextcloud;
|
||||||
up git;
|
up git;
|
||||||
|
|
Loading…
Reference in a new issue