Kim Oliver Drechsel
70f5bbb492
All checks were successful
continuous-integration/drone Build is passing
26 lines
530 B
YAML
26 lines
530 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: Minecraft Vanilla Server
|
|
|
|
steps:
|
|
- name: build public
|
|
image: plugins/docker
|
|
settings:
|
|
repo: kimdrechsel/minecraft-vanilla-server
|
|
username: kimdrechsel
|
|
registry: docker.io
|
|
password:
|
|
from_secret: dockerhub_token
|
|
dockerfile: ./Dockerfile
|
|
tags:
|
|
- latest
|
|
- ${MINECRAFT_SERVER_VERSION}
|
|
build_args_from_env:
|
|
- MINECRAFT_SERVER_VERSION
|
|
- DOWNLOAD_URL
|
|
depends_on:
|
|
- clone
|
|
|
|
trigger:
|
|
event:
|
|
- custom |