From 61debe218b06ed6eac1d3a2b0dfcdd7073427718 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Kucharczyk?= Date: Tue, 13 Apr 2021 11:58:48 +0200 Subject: [PATCH] Add .drone.yml This will automatically build and push image to the local Docker registry --- .drone.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..0c7b9c5 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,11 @@ +kind: pipeline +name: build image + +steps: +- name: docker + image: plugins/docker + settings: + repo: registry.kucharczyk.xyz/nextcloud + tags: latest + +