From 418c706bb9b540ea5f53656774c67ae8e673cdf3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn-Michael=20Miehe?= <40151420+ldericher@users.noreply.github.com> Date: Thu, 10 Mar 2022 14:58:28 +0100 Subject: [PATCH] drone yml config --- .drone.yml | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ Dockerfile | 2 +- 2 files changed, 54 insertions(+), 1 deletion(-) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..0b8a286 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,53 @@ +--- +kind: pipeline +name: default +type: docker + +steps: +- name: nextcloud stable + image: plugins/docker + settings: + repo: yavook/kiwi-nextcloud + tags: stable + username: + from_secret: DOCKER_USERNAME + password: + from_secret: DOCKER_PASSWORD + build_args: + - NC_VERSION: stable + +- name: nextcloud 21 + image: plugins/docker + settings: + repo: yavook/kiwi-nextcloud + tags: 21 + username: + from_secret: DOCKER_USERNAME + password: + from_secret: DOCKER_PASSWORD + build_args: + - NC_VERSION: 21 + +- name: nextcloud 22 + image: plugins/docker + settings: + repo: yavook/kiwi-nextcloud + tags: 22 + username: + from_secret: DOCKER_USERNAME + password: + from_secret: DOCKER_PASSWORD + build_args: + - NC_VERSION: 22 + +- name: nextcloud 23 + image: plugins/docker + settings: + repo: yavook/kiwi-nextcloud + tags: 23 + username: + from_secret: DOCKER_USERNAME + password: + from_secret: DOCKER_PASSWORD + build_args: + - NC_VERSION: 23 diff --git a/Dockerfile b/Dockerfile index 81f0dae..c0ec671 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG NC_VERSION=22 +ARG NC_VERSION=stable FROM nextcloud:${NC_VERSION}-fpm-alpine LABEL maintainer="jmm@yavook.de"