diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-12-01 14:31:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-01 14:31:35 +0100 |
commit | 9ae12f84e8d4704fe4c303fdedb12be8e4e73f59 (patch) | |
tree | 514060252453dedc07116160cb49e53cdf922ec5 /docs | |
parent | ca612a3407eeecfedc38b629731f1e7a0105020f (diff) | |
parent | 20160af01822138bab919437c43a3f3ad4849da8 (diff) | |
download | podman-9ae12f84e8d4704fe4c303fdedb12be8e4e73f59.tar.gz podman-9ae12f84e8d4704fe4c303fdedb12be8e4e73f59.tar.bz2 podman-9ae12f84e8d4704fe4c303fdedb12be8e4e73f59.zip |
Merge pull request #8475 from rhatdan/subscriptions
Switch from pkg/secrets to pkg/subscriptions
Diffstat (limited to 'docs')
-rw-r--r-- | docs/source/markdown/podman-build.1.md | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/docs/source/markdown/podman-build.1.md b/docs/source/markdown/podman-build.1.md index 4570bf3ff..c71f4fae9 100644 --- a/docs/source/markdown/podman-build.1.md +++ b/docs/source/markdown/podman-build.1.md @@ -317,6 +317,10 @@ Pass through HTTP Proxy environment variables. Write the image ID to the file. +#### **--ignorefile** + +Path to an alternative .dockerignore file. + #### **--ipc**=*how* Sets the configuration for IPC namespaces when handling `RUN` instructions. @@ -844,9 +848,10 @@ $ podman build -f dev/Containerfile https://10.10.10.1/podman/context.tar.gz ### `.dockerignore` -If the file .dockerignore exists in the context directory, `podman build` reads -its contents. Podman uses the content to exclude files and directories from -the context directory, when executing COPY and ADD directives in the +If the file .dockerignore exists in the context directory, `buildah copy` reads +its contents. Use the `--ignorefile` flag to override .dockerignore path location. +Podman uses the content to exclude files and directories from the context +directory, when executing COPY and ADD directives in the Containerfile/Dockerfile Users can specify a series of Unix shell globals in a .dockerignore file to |