From 9278f0db8f9507174bc468075854c12059815dde Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn-Michael=20Miehe?= <40151420+ldericher@users.noreply.github.com> Date: Sun, 23 Oct 2022 03:35:43 +0200 Subject: [PATCH] fix for "latest" version --- .drone.yml | 14 +++++++------- Dockerfile | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.drone.yml b/.drone.yml index e7663bd..1eece0f 100644 --- a/.drone.yml +++ b/.drone.yml @@ -14,7 +14,7 @@ steps: password: from_secret: DOCKER_PASSWORD build_args: - - NC_VERSION=stable + - NC_VERSION=stable-fpm-alpine - name: nextcloud latest image: plugins/docker @@ -26,7 +26,7 @@ steps: password: from_secret: DOCKER_PASSWORD build_args: - - NC_VERSION=latest + - NC_VERSION=fpm-alpine - name: nextcloud 21 image: plugins/docker @@ -38,7 +38,7 @@ steps: password: from_secret: DOCKER_PASSWORD build_args: - - NC_VERSION=21 + - NC_VERSION=21-fpm-alpine - name: nextcloud 22 image: plugins/docker @@ -50,7 +50,7 @@ steps: password: from_secret: DOCKER_PASSWORD build_args: - - NC_VERSION=22 + - NC_VERSION=22-fpm-alpine - name: nextcloud 23 image: plugins/docker @@ -62,7 +62,7 @@ steps: password: from_secret: DOCKER_PASSWORD build_args: - - NC_VERSION=23 + - NC_VERSION=23-fpm-alpine - name: nextcloud 24 image: plugins/docker @@ -74,7 +74,7 @@ steps: password: from_secret: DOCKER_PASSWORD build_args: - - NC_VERSION=24 + - NC_VERSION=24-fpm-alpine - name: nextcloud 25 image: plugins/docker @@ -86,7 +86,7 @@ steps: password: from_secret: DOCKER_PASSWORD build_args: - - NC_VERSION=25 + - NC_VERSION=25-fpm-alpine - name: parallelism provider image: alpine diff --git a/Dockerfile b/Dockerfile index ddd04a6..8d9bf94 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ ARG NC_VERSION=stable -FROM nextcloud:${NC_VERSION}-fpm-alpine +FROM nextcloud:${NC_VERSION} LABEL maintainer="jmm@yavook.de" #########