Files
coolify/deployCy.sh
PhatPhuckDave 7edb934d8a
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
Add a deploycyka script
2025-09-26 10:06:18 +02:00

13 lines
342 B
Bash

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