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
13 lines
342 B
Bash
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!"
|