fix(examples/templates/docker): persist /home/coder instead of /home/${local.user} (#16189)

Fix for #16188
This commit is contained in:
Phorcys
2025-01-19 04:41:55 +01:00
committed by GitHub
parent fbc2a73bef
commit 738a7f6bd9
+1 -1
View File
@@ -195,7 +195,7 @@ resource "docker_container" "workspace" {
ip = "host-gateway"
}
volumes {
container_path = "/home/${local.username}"
container_path = "/home/coder"
volume_name = docker_volume.home_volume.name
read_only = false
}