drone runner fron docker.io again
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-11-30 17:18:03 +01:00
parent 63f1bab168
commit d9cb340169
5 changed files with 16 additions and 18 deletions

View File

@@ -20,14 +20,6 @@ job "drone-runner" {
port = "http"
}
volume "drone-runner" {
type = "csi"
source = "drone-runner"
read_only = false
access_mode = "single-node-writer"
attachment_mode = "file-system"
}
restart {
attempts = 5
delay = "30s"
@@ -35,14 +27,10 @@ job "drone-runner" {
task "drone-runner" {
driver = "podman"
volume_mount {
volume = "drone-runner"
destination = "/drone"
read_only = false
}
config {
image = "docker.io/drone/drone-runner-docker:latest"
image = "drone/drone-runner-docker:latest"
force_pull = true
ports = ["http"]
volumes = [
"/var/run/podman/podman.sock:/var/run/docker.sock",
@@ -62,8 +50,8 @@ job "drone-runner" {
}
resources {
cpu = 500
memory = 128
cpu = 100
memory = 64
}
}