Update .drone.yml
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-11-07 15:22:56 +00:00
parent de6dba6ffa
commit 7b42ff76af

View File

@@ -16,3 +16,22 @@ steps:
- git rev-parse HEAD - git rev-parse HEAD
- echo "Latest tag:" - echo "Latest tag:"
- git describe --tags --abbrev=0 || echo "No tags found" - git describe --tags --abbrev=0 || echo "No tags found"
- name: docker-pull-test
image: docker:cli
volumes:
- name: dockersock
path: /var/run/docker.sock
commands:
- echo "=== Testing Docker image pull connectivity ==="
- docker info
- echo "Pulling busybox:latest ..."
- docker pull busybox:latest
- echo "Pulling node:20-alpine ..."
- docker pull node:20-alpine
- echo "✅ Docker Hub pull test completed successfully"
volumes:
- name: dockersock
host:
path: /var/run/docker.sock