.drone.yml created
This commit is contained in:
parent
d915b69fa6
commit
eb1231b7f7
1 changed files with 24 additions and 0 deletions
24
.drone.yml
Normal file
24
.drone.yml
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: build-docker
|
||||||
|
|
||||||
|
platform:
|
||||||
|
os: linux
|
||||||
|
arch: amd64
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: tf2-dm
|
||||||
|
image: plugins/docker
|
||||||
|
settings:
|
||||||
|
repo: spaenny/dm-server
|
||||||
|
cache_from: "spaenny/dm-server:latest"
|
||||||
|
auto_tag: true
|
||||||
|
context: ./
|
||||||
|
dockerfile: ./Dockerfile
|
||||||
|
username:
|
||||||
|
from_secret: docker_username
|
||||||
|
password:
|
||||||
|
from_secret: docker_password
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue