Files
sso/deploy.sh
2026-01-25 14:36:01 +01:00

16 lines
391 B
Bash

#!/bin/bash
# Build and start the container
docker-compose up -d --build
echo "SSO Service Deployed!"
echo "---------------------------------------------------"
echo "Please add the following to your Caddyfile:"
echo ""
echo "sso.nabd-co.com {"
echo " reverse_proxy sso_service:8001"
echo "}"
echo ""
echo "Then reload Caddy."
echo "---------------------------------------------------"