diff --git a/tldr/podman-login b/tldr/podman-login new file mode 100644 index 00000000..f3e9670a --- /dev/null +++ b/tldr/podman-login @@ -0,0 +1,22 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# podman login + +> Log in to a container registry. +> Note: the default authfile path on Linux is `$XDG_RUNTIME_DIR/containers/auth.json`, which is usually stored in a `tmpfs` (in RAM). +> More information: . + +- Log in to a registry (non-persistent on Linux; persistent on Windows/macOS): + +`podman login {{registry.example.org}}` + +- Log in to a registry persistently on Linux: + +`podman login --authfile $HOME/.config/containers/auth.json {{registry.example.org}}` + +- Log in to an insecure (HTTP) registry: + +`podman login --tls-verify false {{registry.example.org}}` diff --git a/tldr/pulumi-new b/tldr/pulumi-new new file mode 100644 index 00000000..5e51c5cc --- /dev/null +++ b/tldr/pulumi-new @@ -0,0 +1,29 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# pulumi new + +> Create a new Pulumi project. +> More information: . + +- Choose a template interactively: + +`pulumi new` + +- Create a project from a specific template (e.g `azure-python`): + +`pulumi new {{provided-template}}` + +- Create a project from a local file: + +`pulumi new {{path/to/templates/aws-typescript}}` + +- Create a project from a Git repository: + +`pulumi new {{url}}` + +- Use the specified secrets provider with the backend: + +`pulumi new --secrets-provider={{passphrase}}`