chefbible/deploy.sh
2025-09-08 19:54:02 -04:00

14 lines
412 B
Bash
Executable File

#!/bin/bash
# Super Simple ChefBible Deploy
# Just run: ./deploy.sh
echo "🚀 Building and pushing ChefBible..."
# Build and push in one go
docker build -t git.redbackpack.ca/taogaetz/chefbible:latest . && \
docker push git.redbackpack.ca/taogaetz/chefbible:latest
echo "✅ Done! Now go to Portainer and click 'Update the stack'"
echo "💾 If data gets lost, run './db-manager.sh restore' on your server"