Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b11ec17 commit b5a8526Copy full SHA for b5a8526
dogfood/main.tf
@@ -28,9 +28,10 @@ resource "coder_agent" "dev" {
28
os = "linux"
29
startup_script = <<EOF
30
#!/bin/sh
31
+ set -x
32
# install and start code-server
33
curl -fsSL https://code-server.dev/install.sh | sh
- code-server --auth none --port 13337
34
+ code-server --auth none --port 13337 &
35
sudo service docker start
36
if [ -f ~/personalize ]; then ~/personalize 2>&1 | tee ~/.personalize.log; fi
37
EOF
0 commit comments