We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent4b2a928 commit68a298fCopy full SHA for 68a298f
examples/templates/docker-devcontainer/main.tf
@@ -315,12 +315,11 @@ resource "docker_container" "workspace" {
315
image=local.workspace_image
316
317
# NOTE: The `privileged` mode is one way to run Docker-in-Docker,
318
-# which is required for the devcontainer to work.IF this is not
+# which is required for the devcontainer to work.If this is not
319
# desired, you can remove this line. However, you will need to ensure
320
# that the devcontainer can run Docker commands in some other way.
321
-# Mounting the host Docker socket is one way to do this, but it is
322
-# strongly discouraged because workspaces will then compete for
323
-# control of the devcontainers.
+# Mounting the host Docker socket is strongly discouraged because
+# workspaces will then compete for control of the devcontainers.
324
privileged=true
325
326
# Uses lower() to avoid Docker restriction on container names.