V 1.0.0: Netzwerk im Docker angepasst

mailto vor die Adresse im footer
This commit is contained in:
2026-02-23 10:47:19 +00:00
parent e28cca1c46
commit fec587a524
8 changed files with 103 additions and 22 deletions

21
build-local.sh Executable file
View File

@@ -0,0 +1,21 @@
#!/bin/bash
# Lokales Build-Script für Esprimo
# Baut das Image mit aktuellem Build-Datum
set -e
BUILD_DATE=$(date +%d.%m.%Y)
echo "=========================================="
echo "Lokaler Build"
echo "Build-Datum: ${BUILD_DATE}"
echo "=========================================="
echo ""
BUILD_DATE=${BUILD_DATE} docker compose -f docker-compose.local.yml up -d --build
echo ""
echo "✓ Build abgeschlossen!"
echo " App läuft auf http://localhost:3000"
echo " Build-Datum: ${BUILD_DATE}"