Files
stellars-jupyterhub-ds/extra/traefik-host-based-routing/stop.sh
stellarshenson dd0ce86add feat: add traefik host-based routing deployment template
Add extra/traefik-host-based-routing/ template for creating local
deployments with Traefik reverse proxy and self-signed certificates:

- compose_override.yml with YOURDOMAIN placeholder
- Makefile with start/stop/pull/logs/status targets
- start.sh (clone/pull + start services)
- stop.sh (stop services)
- generate-certs.sh (creates wildcard cert for given domain)
- certs/tls.yml template for Traefik file provider
- .gitignore (excludes certs and cloned repo)

Usage: copy folder, run generate-certs.sh, edit compose_override.yml,
run start.sh to clone repo and start services
2026-01-05 09:39:51 +00:00

10 lines
161 B
Bash
Executable File

#!/bin/bash
# Stop services
set -e
echo "Stopping services..."
docker compose -f stellars-jupyterhub-ds/compose.yml -f compose_override.yml down
echo "Done."