kreuzwerker
terraform-provider-docker
Go

Terraform Docker provider

Last updated Jul 8, 2026
813
Stars
212
Forks
24
Issues
+2
Stars/day
Attention Score
74
Language breakdown
Go 96.1%
Go Template 1.9%
Shell 0.7%
Batchfile 0.5%
Makefile 0.5%
Dockerfile 0.2%
Files click to expand
README

Docker logo Terraform logo

Terraform Provider for Docker

Release Installs Registry License Acc Tests golangci-lint Go Report Card

Sponsored by Coder

What You Can Manage With This Provider

This provider covers more than basic Docker images and containers. With Terraform, you can manage:

Available data sources include images, image tags and manifests, containers, networks, plugins, and container logs. See the full provider documentation for the complete resource and data source list.

Documentation

The documentation for the provider is available on the Terraform Registry. You need at least Terraform 1.1.5 to use this provider.

Migration guides:

Example usage

Take a look at the examples in the documentation of the registry or use the following example:

# Set the required provider and versions
terraform {
  required_providers {
    # We recommend pinning to the specific version of the Docker Provider you're using
    # since new versions are released frequently
    docker = {
      source  = "kreuzwerker/docker"
      # or if you want to pull from opentfu
      source = "registry.opentofu.org/kreuzwerker/docker"
      version = "4.5.0"
    }
  }
}

Configure the docker provider

provider "docker" { }

Create a docker image resource

-> docker pull nginx:latest

resource "docker_image" "nginx" { name = "nginx:latest" keep_locally = true }

Create a docker container resource

-> same as 'docker run --name nginx -p8080:80 -d nginx:latest'

resource "docker_container" "nginx" { name = "nginx" image = dockerimage.nginx.imageid

ports { external = 8080 internal = 80 } }

Or create a service resource

-> same as 'docker service create -d -p 8081:80 --name nginx-service --replicas 2 nginx:latest'

resource "dockerservice" "nginxservice" { name = "nginx-service" task_spec { container_spec { image = dockerimage.nginx.repodigest } }

mode { replicated { replicas = 2 } }

endpoint_spec { ports { published_port = 8081 target_port = 80 } } }

Building The Provider

Go 1.18.x (to build the provider plugin)

$ git clone git@github.com:kreuzwerker/terraform-provider-docker
$ make build

Contributing

The Terraform Docker Provider is the work of many of contributors. We appreciate your help!

To contribute, please read the contribution guidelines: Contributing to Terraform - Docker Provider

License

The Terraform Provider Docker is available to everyone under the terms of the Mozilla Public License Version 2.0. Take a look the LICENSE file.

Stargazers over time

Stargazers over time

Sponsors

Coder

🔗 More in this category

© 2026 GitRepoTrend · kreuzwerker/terraform-provider-docker · Updated daily from GitHub