containers.podman.podman_tag (1.12.1) — module

Add an additional name to a local image

Authors: Christian Bourque (@ocafebabe)

Install collection

Install with ansible-galaxy collection install containers.podman:==1.12.1


Add to requirements.yml

  collections:
    - name: containers.podman
      version: 1.12.1

Description

podman tag adds one or more additional names to locally-stored image.


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
# What modules does for example
- containers.podman.podman_tag:
    image: docker.io/continuumio/miniconda3
    target_names:
      - miniconda3
      - miniconda

Inputs

    
image:
    description:
    - Image to tag.
    required: true
    type: str

executable:
    default: podman
    description:
    - Path to C(podman) executable if it is not in the C($PATH) on the machine running
      C(podman)
    type: str

target_names:
    description:
    - Additional names.
    elements: str
    required: true
    type: list