- Add Tenants module to Identity Gateway - Update Dashboard Auth context and components - Refactor token service and user/role controllers - Add Quadlet container definitions for dev environment
17 lines
482 B
Bash
Executable file
17 lines
482 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
REGISTRY="rg.fr-par.scw.cloud/yumi"
|
|
|
|
# Dashboard
|
|
echo "🚀 Building dashboard..."
|
|
podman build -t "$REGISTRY/dashboard:latest" ./dashboard
|
|
echo "🚀 Pushing dashboard..."
|
|
podman push "$REGISTRY/dashboard:latest"
|
|
|
|
# Identity Gateway
|
|
echo "🚀 Building identity-gateway..."
|
|
podman build -t "$REGISTRY/identity-gateway:latest" ./identity-gateway
|
|
echo "🚀 Pushing identity-gateway..."
|
|
podman push "$REGISTRY/identity-gateway:latest"
|
|
|
|
echo "✅ Quick push done!"
|