From 688dc82b19e2bc0faa79e88dafc111c0115ca6ac Mon Sep 17 00:00:00 2001 From: kolaente Date: Sun, 14 Feb 2021 23:41:29 +0100 Subject: [PATCH] Add separate manifest template for latest --- .drone.yml | 2 +- docker-manifest-latest.tmpl | 17 +++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 docker-manifest-latest.tmpl diff --git a/.drone.yml b/.drone.yml index af3569ba5..a70e95aef 100644 --- a/.drone.yml +++ b/.drone.yml @@ -471,7 +471,7 @@ steps: image: plugins/manifest settings: tags: latest - spec: docker-manifest.tmpl + spec: docker-manifest-latest.tmpl password: from_secret: docker_password username: diff --git a/docker-manifest-latest.tmpl b/docker-manifest-latest.tmpl new file mode 100644 index 000000000..e9b19eaca --- /dev/null +++ b/docker-manifest-latest.tmpl @@ -0,0 +1,17 @@ +image: vikunja/frontend:latest +manifests: + - + image: vikunja/frontend:latest-linux-amd64 + platform: + architecture: amd64 + os: linux + - + image: vikunja/frontend:latest-linux-arm64 + platform: + architecture: arm64 + os: linux + - + image: vikunja/frontend:latest-linux-arm + platform: + architecture: arm + os: linux