#!/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"