mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2026-02-02 19:59:30 -05:00
8 KiB
8 KiB
| page_title | subcategory | description |
|---|---|---|
| Resource docker_registry_image - terraform-provider-docker | Manages the lifecycle of docker image in a registry. You can upload images to a registry (= docker push) and also delete them again |
Resource (docker_registry_image)
Manages the lifecycle of docker image in a registry. You can upload images to a registry (= docker push) and also delete them again
Example Usage
Build an image with the docker_image resource and then push it to a registry:
resource "docker_registry_image" "helloworld" {
name = docker_image.image.name
keep_remotely = true
}
resource "docker_image" "image" {
name = "registry.com/somename:1.0"
build {
context = "${path.cwd}/absolutePathToContextFolder"
}
}
Schema
Required
name(String) The name of the Docker image.
Optional
auth_config(Block List, Max: 1) Authentication configuration for the Docker registry. It is only used for this resource. (see below for nested schema)build(Block Set, Max: 1) Configuration to build an image. Requires theUse containerd for pulling and storing imagesoption to be disabled in the Docker Host(https://github.com/kreuzwerker/terraform-provider-docker/issues/534). Please see docker build command reference too. (see below for nested schema)insecure_skip_verify(Boolean) Iftrue, the verification of TLS certificates of the server/registry is disabled. Defaults tofalsekeep_remotely(Boolean) If true, then the Docker image won't be deleted on destroy operation. If this is false, it will delete the image from the docker registry on destroy operation. Defaults tofalsetimeouts(Block, Optional) (see below for nested schema)triggers(Map of String) A map of arbitrary strings that, when changed, will force thedocker_registry_imageresource to be replaced. This can be used to repush a local image
Read-Only
id(String) The ID of this resource.sha256_digest(String) The sha256 digest of the image.
Nested Schema for auth_config
Required:
address(String) The address of the Docker registry.password(String, Sensitive) The password for the Docker registry.username(String) The username for the Docker registry.
Nested Schema for build
Required:
context(String) Value to specify the build context. Currently, only aPATHcontext is supported. You can use the helper function '${path.cwd}/context-dir'. This always refers to the local working directory, even when building images on remote hosts. Please see https://docs.docker.com/build/building/context/ for more information about build contexts.
Optional:
additional_contexts(List of String) A list of additional build contexts. Only supported when using a buildx builder. Example:["name=path", "src = https://example.org"}. Please see https://docs.docker.com/reference/cli/docker/buildx/build/#build-context for more information.auth_config(Block List) The configuration for the authentication (see below for nested schema)build_args(Map of String) Pairs for build-time variables in the form ofENDPOINT : "https://example.com"build_id(String) BuildID is an optional identifier that can be passed together with the build request. The same identifier can be used to gracefully cancel the build with the cancel request.build_log_file(String) Path to a file where the buildx log are written to. Only available whenbuilderis set. If not set, no logs are available. The path is taken as is, so make sure to use a path that is available.builder(String) Set the name of the buildx builder to use. If not set, the legacy builder is used.cache_from(List of String) External cache sources (e.g.,user/app:cache,type=local,src=path/to/dir). Only supported when using a buildx builder.cache_to(List of String) Cache export destinations (e.g.,user/app:cache,type=local,dest=path/to/dir). Only supported when using a buildx builder.cgroup_parent(String) Optional parent cgroup for the containercpu_period(Number) The length of a CPU period in microsecondscpu_quota(Number) Microseconds of CPU time that the container can get in a CPU periodcpu_set_cpus(String) CPUs in which to allow execution (e.g.,0-3,0,1)cpu_set_mems(String) MEMs in which to allow execution (0-3,0,1)cpu_shares(Number) CPU shares (relative weight)dockerfile(String) Name of the Dockerfile. Defaults toDockerfile.extra_hosts(List of String) A list of hostnames/IP mappings to add to the container’s /etc/hosts file. Specified in the form ["hostname:IP"]force_remove(Boolean) Always remove intermediate containersisolation(String) Isolation represents the isolation technology of a container. The supported values arelabel(Map of String) Set metadata for an imagelabels(Map of String) User-defined key/value metadatamemory(Number) Set memory limit for buildmemory_swap(Number) Total memory (memory + swap), -1 to enable unlimited swapnetwork_mode(String) Set the networking mode for the RUN instructions during buildno_cache(Boolean) Do not use the cache when building the imageplatform(String) Set the target platform for the build. Defaults toGOOS/GOARCH. For more information see the docker documentationpull_parent(Boolean) Attempt to pull the image even if an older image exists locallyremote_context(String) A Git repository URI or HTTP/HTTPS context URI. Will be ignored ifbuilderis set.remove(Boolean) Remove intermediate containers after a successful build. Defaults totrue.secrets(Block List) Set build-time secrets. Only available when you use a buildx builder. (see below for nested schema)security_opt(List of String) The security optionssession_id(String) Set an ID for the build sessionshm_size(Number) Size of /dev/shm in bytes. The size must be greater than 0squash(Boolean) If true the new layers are squashed into a new image with a single new layersuppress_output(Boolean) Suppress the build output and print image ID on successtag(List of String) Name and optionally a tag in the 'name:tag' formattarget(String) Set the target build stage to buildulimit(Block List) Configuration for ulimits (see below for nested schema)version(String) Version of the underlying builder to use
Nested Schema for build.auth_config
Required:
host_name(String) hostname of the registry
Optional:
auth(String) the auth tokenemail(String) the user emalidentity_token(String) the identity tokenpassword(String) the registry passwordregistry_token(String) the registry tokenserver_address(String) the server addressuser_name(String) the registry user name
Nested Schema for build.secrets
Required:
id(String) ID of the secret. By default, secrets are mounted to /run/secrets/
Optional:
env(String) Environment variable source of the secretsrc(String) File source of the secret. Takes precedence overenv
Nested Schema for build.ulimit
Required:
hard(Number) soft limitname(String) type of ulimit, e.g.nofilesoft(Number) hard limit
Nested Schema for timeouts
Optional:
create(String)delete(String)update(String)