Browse Source

Set auto-tag to false on rootless manifest (#13383)

Current overrides rootful container
tags/v1.15.0-dev
techknowlogick GitHub 4 years ago
parent
commit
59c4fc93b5
1 changed files with 6 additions and 5 deletions
  1. +6
    -5
      .drone.yml

+ 6
- 5
.drone.yml View File

@@ -792,29 +792,30 @@ platform:
arch: amd64

steps:
- name: manifest
- name: manifest-rootless
pull: always
image: plugins/manifest
settings:
auto_tag: true
auto_tag: false
ignore_missing: true
spec: docker/manifest.tmpl
spec: docker/manifest.rootless.tmpl
password:
from_secret: docker_password
username:
from_secret: docker_username

- name: manifest-rootless
- name: manifest
pull: always
image: plugins/manifest
settings:
auto_tag: true
ignore_missing: true
spec: docker/manifest.rootless.tmpl
spec: docker/manifest.tmpl
password:
from_secret: docker_password
username:
from_secret: docker_username

trigger:
ref:
- refs/heads/master


Loading…
Cancel
Save