use custom dind to build doc container image
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
989b646d45
commit
59ae404a19
39
.drone.yml
39
.drone.yml
@ -34,20 +34,23 @@ steps:
|
|||||||
- cd docs
|
- cd docs
|
||||||
- make html
|
- make html
|
||||||
|
|
||||||
- name: build-docs
|
- name: build_docs
|
||||||
image: banzaicloud/drone-kaniko
|
image: docker:stable-dind
|
||||||
settings:
|
volumes:
|
||||||
context: ${PWD}/docs/
|
- name: dockersock
|
||||||
dockerfile: docs/Dockerfile
|
path: /var/run
|
||||||
registry: registry.kmlabz.com
|
environment:
|
||||||
repo: goldenpogacsa/consumer-scheduler-docs
|
DOCKER_USERNAME:
|
||||||
username:
|
|
||||||
from_secret: DOCKER_USERNAME
|
from_secret: DOCKER_USERNAME
|
||||||
password:
|
DOCKER_PASSWORD:
|
||||||
from_secret: DOCKER_PASSWORD
|
from_secret: DOCKER_PASSWORD
|
||||||
tags:
|
commands:
|
||||||
- latest
|
- cd docs
|
||||||
- ${DRONE_BUILD_NUMBER}
|
- echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin registry.kmlabz.com
|
||||||
|
- docker build -t="registry.kmlabz.com/goldenpogacsa/consumer-scheduler-docs" .
|
||||||
|
- docker build -t="registry.kmlabz.com/goldenpogacsa/consumer-scheduler-docs:$DRONE_BUILD_NUMBER" .
|
||||||
|
- docker push "registry.kmlabz.com/goldenpogacsa/consumer-scheduler-docs"
|
||||||
|
- docker push "registry.kmlabz.com/goldenpogacsa/consumer-scheduler-docs:$DRONE_BUILD_NUMBER"
|
||||||
|
|
||||||
- name: slack
|
- name: slack
|
||||||
image: plugins/slack
|
image: plugins/slack
|
||||||
@ -58,3 +61,15 @@ steps:
|
|||||||
icon_url: https://cloudcdn.tormakristof.eu/static/drone.svg
|
icon_url: https://cloudcdn.tormakristof.eu/static/drone.svg
|
||||||
when:
|
when:
|
||||||
status: [ failure ]
|
status: [ failure ]
|
||||||
|
|
||||||
|
services:
|
||||||
|
- name: docker
|
||||||
|
image: docker:stable-dind
|
||||||
|
privileged: true
|
||||||
|
volumes:
|
||||||
|
- name: dockersock
|
||||||
|
path: /var/run
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
- name: dockersock
|
||||||
|
temp: {}
|
||||||
|
Reference in New Issue
Block a user