ci: make docker:dind stable-dind
continuous-integration/drone/push Build was killed
Details
continuous-integration/drone/push Build was killed
Details
This commit is contained in:
parent
a53a18a7ca
commit
5ff59905e0
|
@ -0,0 +1 @@
|
|||
docker build drone-starlark -t ${LOCAL_DOCKER_REGISTRY}drone-starlark
|
|
@ -10,7 +10,7 @@ def buildDockerFolder(
|
|||
"name": "build-{name}".format(
|
||||
name = name,
|
||||
),
|
||||
"image": "docker:dind",
|
||||
"image": "docker:stable-dind",
|
||||
"volumes": [
|
||||
{
|
||||
"name": "dockersock",
|
||||
|
|
|
@ -5,7 +5,7 @@ def buildFolder(name, folder):
|
|||
folder=folder,
|
||||
name=name,
|
||||
),
|
||||
"image": "docker:dind",
|
||||
"image": "docker:stable-dind",
|
||||
"volumes": [
|
||||
{
|
||||
"name": "dockersock",
|
||||
|
|
|
@ -3,7 +3,7 @@ load("@this//:environment.star", "environment")
|
|||
def build(name):
|
||||
return {
|
||||
"name": "build-{name}".format(name=name),
|
||||
"image": "docker:dind",
|
||||
"image": "docker:stable-dind",
|
||||
"volumes": [
|
||||
{
|
||||
"name": "dockersock",
|
||||
|
|
|
@ -13,7 +13,7 @@ def pipeline(
|
|||
"services": [
|
||||
{
|
||||
"name": "docker",
|
||||
"image": "docker:dind",
|
||||
"image": "docker:stable-dind",
|
||||
"privileged": True,
|
||||
"volumes": [
|
||||
{
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
def wait(delay, name):
|
||||
return {
|
||||
"name": name,
|
||||
"image": "alpine",
|
||||
"image": "alpine:3.12.0",
|
||||
"commands": [
|
||||
"sleep {delay}".format(delay = delay),
|
||||
],
|
||||
|
|
Loading…
Reference in New Issue