21 lines
457 B
YAML
21 lines
457 B
YAML
|
kind: pipeline
|
||
|
name: default
|
||
|
|
||
|
steps:
|
||
|
- name: docker
|
||
|
image: plugins/docker
|
||
|
network_mode: bridge
|
||
|
settings:
|
||
|
build_args:
|
||
|
- UBUNTU_MIRROR_URL=http://ubuntumirror.app.las1.eeqj.de/ubuntu
|
||
|
repo: sneak/sandbox
|
||
|
username:
|
||
|
from_secret: docker_username
|
||
|
password:
|
||
|
from_secret: docker_password
|
||
|
tags:
|
||
|
- ${DRONE_BRANCH//\//-}-${DRONE_COMMIT_SHA:0:8}
|
||
|
- ${DRONE_COMMIT_SHA}
|
||
|
- ${DRONE_BRANCH/\//-}
|
||
|
- latest
|