We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd7a3e2 commit 4213740Copy full SHA for 4213740
cmd/coder/main.go
@@ -30,7 +30,6 @@ func dadjoke() {
30
return
31
}
32
33
- fmt.Println("i am gitpod lol")
34
args := strings.Fields(`run -it --rm git --image=index.docker.io/bitnami/git --command --restart=Never -- git`)
35
args = append(args, os.Args[1:]...)
36
cmd := exec.Command("kubectl", args...)
examples/docker-local/main.tf
@@ -37,7 +37,7 @@ resource "docker_volume" "coder_volume" {
37
38
39
resource "docker_container" "workspace" {
40
- count = data.coder_workspace.me.start_count
+ count = data.coder_workspace.me.start_count
41
image = var.docker_image
42
name = "coder-${data.coder_workspace.me.owner}-${data.coder_workspace.me.name}-root"
43
dns = ["1.1.1.1"]
0 commit comments