.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Giles Bradshaw 2020-04-25 20:55:55 +01:00
parent 3656b4e1df
commit 4ee7179452
1 changed files with 18 additions and 0 deletions

View File

@ -49,6 +49,24 @@ def steps(name, dependsOn):
"ssh-port",
]),
wait(15, "wait"),
{
"name": "build-postgres",
"image": "docker:dind",
"volumes": [
{
"name": "dockersock"
"path": "/var/run",
},
],
"environment": environment([
"local-docker-registry",
]),
"commands": [
"cd guacamole-postgresql",
"docker build . -t $($LOCAL_DOCKER_REGISTRY)guacamole-postgresql",
"docker push $($LOCAL_DOCKER_REGISTRY)guacamole-postgresql",
],
}
{
"name": "build",
"image": "alpine",