Update Enigma BBS deployment
Some checks failed
Build and Push Docker Image / build (push) Has been cancelled

This commit is contained in:
capitano
2026-04-07 16:35:44 +02:00
parent 6a39457989
commit 3089316a25
6 changed files with 197 additions and 77 deletions

14
build-and-push.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
set -e
echo "Building Enigma BBS Docker image from git repo..."
cd /home/capitano/kubernetes/infrastructure/enigma
# Build the image
docker build -t git.giaco.net/enigma/enigmabbs:latest -f Dockerfile .
# Push to registry
echo "Pushing to git.giaco.net..."
docker push git.giaco.net/enigma/enigmabbs:latest
echo "Done! Image pushed to git.giaco.net/enigma/enigmabbs:latest"