Skip to content

Commit b5a8526

Browse files
committed
Run code-server in background
1 parent b11ec17 commit b5a8526

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

dogfood/main.tf

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,10 @@ resource "coder_agent" "dev" {
2828
os = "linux"
2929
startup_script = <<EOF
3030
#!/bin/sh
31+
set -x
3132
# install and start code-server
3233
curl -fsSL https://code-server.dev/install.sh | sh
33-
code-server --auth none --port 13337
34+
code-server --auth none --port 13337 &
3435
sudo service docker start
3536
if [ -f ~/personalize ]; then ~/personalize 2>&1 | tee ~/.personalize.log; fi
3637
EOF

0 commit comments

Comments
 (0)