Merge branch 'patch-1' of git://github.com/motti24/terraform-provider-docker into motti24-patch-1

This commit is contained in:
Manuel Vogel 2020-10-13 09:37:19 +02:00
commit 7248501ade
No known key found for this signature in database
GPG key ID: 24E54F214569A8A5

View file

@ -109,18 +109,18 @@ resource "docker_service" "foo" {
read_only = true
mounts {
target = "/mount/test"
source = "${docker_volume.test_volume.name}"
type = "volume"
read_only = true
target = "/mount/test"
source = "${docker_volume.test_volume.name}"
type = "volume"
read_only = true
bind_options {
propagation = "private"
bind_options {
propagation = "private"
}
}
mounts {
# another mount
# another mount
}
stop_signal = "SIGTERM"