mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2026-05-13 01:39:02 -04:00
* feat: Add docker_compose resource * test: Run docker-compose tests as acc tests * chore(docs): Update documentation * chore(deps): Update gomod * chore: Try out macos runner and go 1.25 * chore: Update goreleaser configuration * chore: Update goreleaser versions and github actions * chore: Bump remaining setup-go action and go version in workflows --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: Junkern <3775779+Junkern@users.noreply.github.com>
13 lines
No EOL
293 B
HCL
13 lines
No EOL
293 B
HCL
resource "docker_compose" "test" {
|
|
project_name = "%s"
|
|
remove_orphans = true
|
|
wait = true
|
|
wait_timeout = "30s"
|
|
profiles = ["extras"]
|
|
env_files = [
|
|
"%s/testAccDockerCompose.env",
|
|
]
|
|
config_paths = [
|
|
"%s/testAccDockerComposeProfiles.compose.yaml",
|
|
]
|
|
} |