-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.drone.yml
65 lines (59 loc) · 1.6 KB
/
.drone.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
---
kind: pipeline
name: Scala SBT NodeJS
type: kubernetes
platform:
os: linux
arch: amd64
steps:
- name: build-image
pull: if-not-exists
image: 340268328991.dkr.ecr.eu-west-2.amazonaws.com/acp/dind
commands:
# wait for docker service to be up before running docker build
- n=0; while [ "$n" -lt 60 ] && [ ! -e /var/run/docker.sock ]; do n=$(( n + 1 )); sleep 1; done
- docker build -t quay.io/ukhomeofficedigital/scala-sbt-nodejs:$${DRONE_COMMIT_SHA} .
when:
event:
- push
- name: publish-tag
pull: if-not-exists
image: plugins/docker
settings:
registry: quay.io
repo: quay.io/ukhomeofficedigital/scala-sbt-nodejs
tags: ${DRONE_TAG}
environment:
DOCKER_USERNAME: ukhomeofficedigital+drt_quay
DOCKER_PASSWORD:
from_secret: DOCKER_PASSWORD
when:
event:
- tag
services:
- name: docker
image: 340268328991.dkr.ecr.eu-west-2.amazonaws.com/acp/dind
# build:
# environment:
# - DOCKER_USERNAME=ukhomeofficedigital+drt_quay
# image: quay.io/ukhomeofficedigital/drone-docker
# registry: quay.io
# repo: quay.io/ukhomeofficedigital/scala-sbt-nodejs
# secrets: [ docker_password ]
# tags:
# - ${DRONE_COMMIT_SHA}
# - latest
# when:
# event: push
#
# build_tag:
# environment:
# - DOCKER_USERNAME=ukhomeofficedigital+drt_quay
# image: quay.io/ukhomeofficedigital/drone-docker
# registry: quay.io
# repo: quay.io/ukhomeofficedigital/scala-sbt-nodejs
# secrets: [ docker_password ]
# tags:
# - ${DRONE_TAG}
# when:
# event: tag