mirror of
https://github.com/taogaetz/chefbible.git
synced 2025-12-06 11:47:24 -05:00
14 lines
412 B
Bash
Executable File
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"
|