|
|
947b07 |
% ".containerignore" "28" "Sep 2021" "" "Container User Manuals"
|
|
|
947b07 |
|
|
|
947b07 |
# NAME
|
|
|
947b07 |
|
|
|
947b07 |
.containerignore(.dockerignore) - files to ignore buildah or podman build context directory
|
|
|
947b07 |
|
|
|
947b07 |
# INTRODUCTION
|
|
|
947b07 |
|
|
|
947b07 |
Before container engines build an image, they look for a file named .containerignore or .dockerignore in the root
|
|
|
947b07 |
context directory. If one of these file exists, the CLI modifies the context to exclude files and
|
|
|
947b07 |
directories that match patterns specified in the file. This avoids adding them to images using the ADD or COPY
|
|
|
947b07 |
instruction.
|
|
|
947b07 |
|
|
|
947b07 |
The CLI interprets the .containerignore or .dockerignore file as a newline-separated list of patterns similar to
|
|
|
947b07 |
the file globs of Unix shells. For the purposes of matching, the root of the context is considered to be both the
|
|
|
947b07 |
working and the root directory. For example, the patterns /foo/bar and foo/bar both exclude a file or directory
|
|
|
947b07 |
named bar in the foo subdirectory of PATH or in the root of the git repository located at URL. Neither excludes
|
|
|
947b07 |
anything else.
|
|
|
947b07 |
|
|
|
947b07 |
If a line in .containerignore or .dockerignore file starts with # in column 1, then this line is considered as a
|
|
|
947b07 |
comment and is ignored before interpreted by the CLI.
|
|
|
947b07 |
|
|
|
947b07 |
# EXAMPLES
|
|
|
947b07 |
|
|
|
947b07 |
Here is an example .containerignore file:
|
|
|
947b07 |
|
|
|
947b07 |
```
|
|
|
947b07 |
# comment
|
|
|
947b07 |
*/temp*
|
|
|
947b07 |
*/*/temp*
|
|
|
947b07 |
temp?
|
|
|
947b07 |
```
|
|
|
947b07 |
|
|
|
947b07 |
This file causes the following build behavior:
|
|
|
947b07 |
Rule Behavior
|
|
|
947b07 |
```
|
|
|
947b07 |
# comment Ignored.
|
|
|
947b07 |
*/temp* Exclude files and directories whose names start with temp in any immediate subdirectory of the root.
|
|
|
947b07 |
For example, the plain file /somedir/temporary.txt is excluded, as is the directory /somedir/temp.
|
|
|
947b07 |
*/*/temp* Exclude files and directories starting with temp from any subdirectory that is two levels below the
|
|
|
947b07 |
root. For example, /somedir/subdir/temporary.txt is excluded.
|
|
|
947b07 |
temp? Exclude files and directories in the root directory whose names are a one-character extension of temp. For example, /tempa and /tempb are excluded.
|
|
|
947b07 |
```
|
|
|
947b07 |
Matching is done using Go’s filepath.Match rules. A preprocessing step removes leading and trailing whitespace and
|
|
|
947b07 |
eliminates . and .. elements using Go’s filepath.Clean. Lines that are blank after preprocessing are ignored.
|
|
|
947b07 |
|
|
|
947b07 |
Beyond Go’s filepath.Match rules, Docker also supports a special wildcard string ** that matches any number of
|
|
|
947b07 |
directories (including zero). For example, **/*.go will exclude all files that end with .go that are found in all
|
|
|
947b07 |
directories, including the root of the build context.
|
|
|
947b07 |
|
|
|
947b07 |
Lines starting with ! (exclamation mark) can be used to make exceptions to exclusions. The following is an example .containerignore file that uses this mechanism:
|
|
|
947b07 |
```
|
|
|
947b07 |
*.md
|
|
|
947b07 |
!README.md
|
|
|
947b07 |
```
|
|
|
947b07 |
All markdown files except README.md are excluded from the context.
|
|
|
947b07 |
|
|
|
947b07 |
The placement of ! exception rules influences the behavior: the last line of the .containerignore that matches a
|
|
|
947b07 |
particular file determines whether it is included or excluded. Consider the following example:
|
|
|
947b07 |
```
|
|
|
947b07 |
*.md
|
|
|
947b07 |
!README*.md
|
|
|
947b07 |
README-secret.md
|
|
|
947b07 |
```
|
|
|
947b07 |
No markdown files are included in the context except README files other than README-secret.md.
|
|
|
947b07 |
|
|
|
947b07 |
Now consider this example:
|
|
|
947b07 |
```
|
|
|
947b07 |
*.md
|
|
|
947b07 |
README-secret.md
|
|
|
947b07 |
!README*.md
|
|
|
947b07 |
```
|
|
|
947b07 |
All of the README files are included. The middle line has no effect because !README*.md matches README-secret.md and
|
|
|
947b07 |
comes last.
|
|
|
947b07 |
|
|
|
947b07 |
You can even use the .containerignore file to exclude the Containerfile or Dockerfile and .containerignore files.
|
|
|
947b07 |
These files are still sent to the daemon because it needs them to do its job. But the ADD and COPY instructions do
|
|
|
947b07 |
not copy them to the image.
|
|
|
947b07 |
|
|
|
947b07 |
Finally, you may want to specify which files to include in the context, rather than which to exclude. To achieve
|
|
|
947b07 |
this, specify * as the first pattern, followed by one or more ! exception patterns.
|
|
|
947b07 |
|
|
|
947b07 |
## SEE ALSO
|
|
|
947b07 |
buildah-build(1), podman-build(1), docker-build(1)
|
|
|
947b07 |
|
|
|
947b07 |
# HISTORY
|
|
|
947b07 |
*Sep 2021, Compiled by Dan Walsh (dwalsh at redhat dot com) based on docker.com .dockerignore documentation.
|