Disable test service whoami

This commit is contained in:
Florian Zirker 2024-03-05 09:04:20 +00:00
parent 77312ecd70
commit c817a4eaf3
2 changed files with 13 additions and 12 deletions

View file

@ -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:

View file

@ -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;