version 0.0.24

This commit is contained in:
2026-03-06 22:37:48 -05:00
parent 4517746692
commit edbee5c8ef
35 changed files with 743 additions and 372 deletions

View File

@@ -1,10 +1,10 @@
#!/usr/bin/env bash
# ─────────────────────────────────────────────────────────────
# TeamChat — Docker build & release script
# jama — Docker build & release script
#
# Usage:
# ./build.sh # builds teamchat:latest
# ./build.sh 1.2.0 # builds teamchat:1.2.0 AND teamchat:latest
# ./build.sh # builds jama:latest
# ./build.sh 1.2.0 # builds jama:1.2.0 AND jama:latest
# ./build.sh 1.2.0 push # builds, tags, and pushes to registry
#
# To push to a registry, set REGISTRY env var:
@@ -16,7 +16,7 @@ set -euo pipefail
VERSION="${1:-latest}"
ACTION="${2:-}"
REGISTRY="${REGISTRY:-}"
IMAGE_NAME="teamchat"
IMAGE_NAME="jama"
# If a registry is set, prefix image name
if [[ -n "$REGISTRY" ]]; then
@@ -26,7 +26,7 @@ else
fi
echo "╔══════════════════════════════════════╗"
echo "║ TeamChat Docker Builder ║"
echo "║ jama Docker Builder ║"
echo "╠══════════════════════════════════════╣"
echo "║ Image : ${FULL_IMAGE}"
echo "║ Version : ${VERSION}"
@@ -67,7 +67,7 @@ fi
echo ""
echo "─────────────────────────────────────────"
echo "To deploy this version, set in your .env:"
echo " TEAMCHAT_VERSION=${VERSION}"
echo " JAMA_VERSION=${VERSION}"
echo ""
echo "Then run:"
echo " docker compose up -d"