Torma Kristóf
3aa80431e4
All checks were successful
continuous-integration/drone/push Build is passing
33 lines
751 B
YAML
33 lines
751 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: build
|
|
image: docker:stable-dind
|
|
volumes:
|
|
- name: dockersock
|
|
path: /var/run
|
|
environment:
|
|
DOCKER_USERNAME:
|
|
from_secret: DOCKER_USERNAME
|
|
DOCKER_PASSWORD:
|
|
from_secret: DOCKER_PASSWORD
|
|
commands:
|
|
- sleep 15
|
|
- echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
|
|
- docker build -t="tormachris/terminal:$DRONE_BUILD_NUMBER" . && docker push "tormachris/terminal:$DRONE_BUILD_NUMBER"
|
|
- docker build -t="tormachris/terminal" . && docker push "tormachris/terminal"
|
|
|
|
services:
|
|
- name: docker
|
|
image: docker:stable-dind
|
|
privileged: true
|
|
volumes:
|
|
- name: dockersock
|
|
path: /var/run
|
|
|
|
volumes:
|
|
- name: dockersock
|
|
temp: {}
|