Add a deploycyka script
Some checks failed
Staging Build / amd64 (push) Has been cancelled
Staging Build / aarch64 (push) Has been cancelled
Staging Build / merge-manifest (push) Has been cancelled
Lock closed Issues, Discussions, and PRs / lock-threads (push) Has been cancelled
Manage Stale Issues and PRs / manage-stale (push) Has been cancelled

This commit is contained in:
2025-09-26 10:06:18 +02:00
parent d086f9fc50
commit 7edb934d8a

12
deployCy.sh Normal file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
# Build and deploy Coolify Docker image
set -e
echo "Building Coolify Docker image..."
docker build -f docker/production/Dockerfile -t docker.site.quack-lab.dev/coolify:4.0.0 .
echo "Image built successfully. Attempting to push..."
docker push docker.site.quack-lab.dev/coolify:4.0.0
echo "Deployment completed successfully!"