Page
Library
Module
Module type
Parameter
Class
Class type
Source
DockerfileSourceGenerate Dockerfile scripts for use with the Docker container manager
t is a list of Dockerfile lines
sexp_of_t t converts a Dockerfile into a s-expression representation.
maybe f v returns empty if the optional value v is None, and otherwise applies f to the Some value in v.
type parser_directive = [ | `Syntax of string| `Escape of char| `Check of string list * boolList of check names or ["all"], and true to turn warnings into errors.
]A parser directive. If used, needs to be the first line of the Dockerfile.
Convenience function, returns the parser directive describing the latest BuildKit syntax.
Adds a comment to the Dockerfile for documentation purposes
val heredoc :
?strip:bool ->
?word:string ->
?delimiter:string ->
('a, unit, string, heredoc) format4 ->
'aheredoc ~word here_document creates a heredoc value with here_document as content and word () as opening delimiter. If word is quoted, then delimiter (unquoted word) needs to be specified. Quoting affects expansion in the here-document. Requires 1.4 buildkit_syntax.
The from instruction sets the base image for subsequent instructions.
from as its first instruction. The image can be any valid image.from must be the first non-comment instruction in the Dockerfile.from can appear multiple times within a single Dockerfile in order to create multiple images. Multiple FROM commands will result in a multi-stage build, and the ?from argument to the copy and add functions can move artefacts across stages.By default, the stages are not named, and you refer to them by their integer number, starting with 0 for the first FROM instruction. However, you can name your stages, by supplying an ?alias argument. The alias can be supplied to the ?from parameter to copy or add to refer to this particular stage by name.
If no tag is supplied, latest is assumed. If the used tag does not exist, an error will be returned.
The optional platform flag can be used to specify the platform of the image in case the from references a multi-platform image. For example, linux/386 could be used. By default, the target platform of the build request is ued if this is not specified.
maintainer sets the author field of the generated images.
val run :
?mounts:mount list ->
?network:network ->
?security:security ->
?device:device ->
('a, unit, string, t) format4 ->
'arun ?mounts ?network ?security fmt will execute any commands in a new layer on top of the current image and commit the results. The resulting committed image will be used for the next step in the Dockerfile. The string result of formatting arg will be passed as a /bin/sh -c invocation.
val run_exec :
?mounts:mount list ->
?network:network ->
?security:security ->
?device:device ->
string list ->
trun_exec ?mounts ?network ?security args will execute any commands in a new layer on top of current image and commit the results. The resulting committed image will be used for the next step in the Dockerfile. The cmd form makes it possible to avoid shell string munging, and to run commands using a base image that does not contain /bin/sh.
val run_heredoc :
?mounts:mount list ->
?network:network ->
?security:security ->
?device:device ->
(heredoc * string option) list ->
trun_heredoc ?mounts ?network ?security docs will execute any commands in a new layer on top of the current image and commit the results. The resulting committed image will be used for the next step in the Dockerfile. The string result of formatting arg will be passed as a /bin/sh -c invocation.
val mount_bind :
target:string ->
?source:string ->
?from:string ->
?readwrite:bool ->
unit ->
mountmount_bind ~target ?source ?from ?readwrite () Creates a bind mount for run.
Requires buildkit_syntax.
val mount_cache :
?id:string ->
target:string ->
?readonly:bool ->
?sharing:[ `Locked | `Private | `Shared ] ->
?from:string ->
?source:string ->
?mode:int ->
?uid:int ->
?gid:int ->
unit ->
mountmount_cache ?id ~target ?readonly ?sharing ?from ?source ?mode ?uid ?gid () Creates a cache mount for run.
Requires buildkit_syntax.
mount_tmpfs ~target ?size ()) Creates a tmpfs mount for run.
Requires buildkit_syntax.
Note that the directory seems to be completely removed from the image, so once you start using tmpfs for a dir, it is recommended that all further RUN commands use it too to avoid ENOENT errors.
val mount_secret :
?id:string ->
?target:string ->
?required:bool ->
?mode:int ->
?uid:int ->
?gid:int ->
unit ->
mountmount_secret ?id ?target ?required ?mode ?uid ?gid Creates a secret mount for run.
Requires buildkit_syntax.
val mount_ssh :
?id:string ->
?target:string ->
?required:bool ->
?mode:int ->
?uid:int ->
?gid:int ->
unit ->
mountmount_ssh ?id ?target ?required ?mode ?uid ?gid Creates an ssh mount for run.
Requires buildkit_syntax.
Seems to be only supported by Docker at the moment.
Create a device for RUN. Lets builds request CDI devices are available to the build step.
cmd args provides defaults for an executing container. These defaults can include an executable, or they can omit the executable, in which case you must specify an entrypoint as well. The string result of formatting arg will be passed as a /bin/sh -c invocation.
There can only be one cmd in a Dockerfile. If you list more than one then only the last cmd will take effect.
cmd_exec args provides defaults for an executing container. These defaults can include an executable, or they can omit the executable, in which case you must specify an entrypoint as well. The first argument to the args list must be the full path to the executable.
There can only be one cmd in a Dockerfile. If you list more than one then only the last cmd will take effect.
expose_port informs Docker that the container will listen on the specified network port at runtime.
expose_ports informs Docker that the container will listen on the specified network ports at runtime.
arg ~default name defines a variable that users can pass at build-time to the builder with the docker build command using the --build-arg <varname>=<value> flag. It can optionally include a default value.
env sets the list of environment variables supplied with the (<key>, <value>) tuple. This value will be passed to all future run instructions. This is functionally equivalent to prefixing a shell command with <key>=<value>.
val add :
?link:bool ->
?chown:string ->
?chmod:int ->
?from:string ->
?exclude:string list ->
?checksum:string ->
?keep_git_dir:bool ->
?unpack:bool ->
src:string list ->
dst:string ->
unit ->
tadd ?link ?chown ?chmod ?from ~src ~dst () copies new files, directories or remote file URLs from src and adds them to the filesystem of the container at the dst path.
Multiple src resource may be specified but if they are files or directories then they must be relative to the source directory that is being built (the context of the build).
Each src may contain wildcards and matching will be done using Go's filepath.Match rules.
All new files and directories are created with a UID and GID of 0. In the case where src is a remote file URL, the destination will have permissions of 600. If the remote file being retrieved has an HTTP Last-Modified header, the timestamp from that header will be used to set the mtime on the destination file. Then, like any other file processed during an ADD, mtime will be included in the determination of whether or not the file has changed and the cache should be updated.
val copy :
?link:bool ->
?chown:string ->
?chmod:int ->
?from:string ->
?parents:bool ->
?exclude:string list ->
src:string list ->
dst:string ->
unit ->
tcopy ?link ?chown ?from ~src ~dst () copies new files or directories from src and adds them to the filesystem of the container at the path dst. See add for more detailed documentation.
copy_heredoc src dst creates the file dst using the content of the here-documents src. Requires 1.4 buildkit_syntax.
user fmt sets the user name or UID to use when running the image and for any run, cmd, entrypoint commands that follow it in the Dockerfile.
workdir fmt sets the working directory for any run, cmd and entrypoint instructions that follow it in the Dockerfile.
It can be used multiple times in the one Dockerfile. If a relative path is provided, it will be relative to the path of the previous workdir instruction.
volume fmt will create a mount point with the specified name and mark it as holding externally mounted volumes from native host or other containers. The value can be a JSON array or a plain string with multiple arguments that specify several mount points.
volumes mounts will create mount points with the specified names in mounts and mark them as holding externally mounted volumes from native host or other containers.
entrypoint fmt allows you to configure a container that will run as an executable. The fmt string will be executed using a /bin/sh subshell.
The shell form prevents any cmd or run command line arguments from being used, but has the disadvantage that your entrypoint will be started as a subcommand of /bin/sh -c, which does not pass signals. This means that the executable will not be the container's PID 1 - and will not receive Unix signals - so your executable will not receive a SIGTERM from docker stop <container>.
To get around this limitation, use the entrypoint_exec command to directly execute an argument list without a subshell.
entrypoint fmt allows you to configure a container that will run as an executable. You can use the exec form here to set fairly stable default commands and arguments and then use either cmd or cmd_exec to set additional defaults that are more likely to be changed by the user starting the Docker container.
shell t allows the default shell used for the shell form of commands to be overridden. The default shell on Linux is "/bin/sh"; "-c", and on Windows is "cmd"; "/S"; "/C". The shell instruction can appear multiple times. Each shell instruction overrides all previous shell instructions, and affects all subsequent instructions.
onbuild t adds to the image a trigger instruction t to be executed at a later time, when the image is used as the base for another build. The trigger will be executed in the context of the downstream build, as if it had been inserted immediately after the from instruction in the downstream Dockerfile.
Any build instruction can be registered as a trigger.
This is useful if you are building an image which will be used as a base to build other images, for example an application build environment or a daemon which may be customized with user-specific configuration.
label l adds metadata to an image via a list of key-value pairs. To include spaces within a label value, use quotes and backslashes as you would in command-line parsing. An image can have more than one label. To specify multiple labels, Docker recommends combining labels into a single label instruction where possible. Each label instruction produces a new layer which can result in an inefficient image if you use many labels.
Labels are additive including LABELs in FROM images. If Docker encounters a label/key that already exists, the new value overrides any previous labels with identical keys.
To view an image’s labels, use the docker inspect command.
val healthcheck :
?interval:string ->
?timeout:string ->
?start_period:string ->
?start_interval:string ->
?retries:int ->
('a, unit, string, t) format4 ->
'ahealthcheck cmd checks container health by running a command inside the container. See cmd for additional details.
val healthcheck_exec :
?interval:string ->
?timeout:string ->
?start_period:string ->
?start_interval:string ->
?retries:int ->
string list ->
thealthcheck_exec cmd checks container health by running a command inside the container. See cmd_exec and healthcheck for additional details.
healthcheck_none disables any healthcheck inherited from the base image.
stopsignal signal sets the system call signal that will be sent to the container to exit.
crunch t will reduce coincident run commands into a single one that is chained using the shell && operator. This reduces the number of layers required for a production image.