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
|
||||
|
||||
|
||||
whoami:
|
||||
image: traefik/whoami
|
||||
networks:
|
||||
- web
|
||||
labels:
|
||||
- "traefik.enable=true"
|
||||
- "traefik.http.routers.whoami.rule=Host(`whoami.${DOMAIN}`)"
|
||||
- "traefik.http.routers.whoami.entrypoints=websecure"
|
||||
- "traefik.http.routers.whoami.tls.certresolver=netcup"
|
||||
- "docker.group=proxy"
|
||||
restart: unless-stopped
|
||||
# whoami:
|
||||
# image: traefik/whoami
|
||||
# networks:
|
||||
# - web
|
||||
# labels:
|
||||
# - "traefik.enable=true"
|
||||
# - "traefik.http.routers.whoami.rule=Host(`whoami.${DOMAIN}`)"
|
||||
# - "traefik.http.routers.whoami.entrypoints=websecure"
|
||||
# - "traefik.http.routers.whoami.tls.certresolver=netcup"
|
||||
# - "docker.group=proxy"
|
||||
# restart: unless-stopped
|
||||
|
||||
|
||||
networks:
|
||||
|
|
|
@ -4,7 +4,8 @@ function up {
|
|||
(cd "$1" && echo "[$1]" && docker compose up -d "${@:2}");
|
||||
}
|
||||
|
||||
up proxy --scale whoami=3;
|
||||
#up proxy --scale whoami=3;
|
||||
up proxy;
|
||||
up monitoring;
|
||||
up nextcloud;
|
||||
up git;
|
||||
|
|
Loading…
Reference in a new issue