Skip to content

Commit

Permalink
fix(coder): curl install code-server ssl self-signed somehow
Browse files Browse the repository at this point in the history
  • Loading branch information
tuana9a committed Sep 11, 2024
1 parent 42943ee commit d59e98a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 502-coder-templates/statefulset-base/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ resource "coder_agent" "main" {
set -e
# install and start code-server
curl -fsSL https://code-server.dev/install.sh | sh -s -- --method=standalone --prefix=/tmp/code-server --version 4.90.3
curl -fsSL https://raw.githubusercontent.com/coder/code-server/main/install.sh | sh -s -- --method=standalone --prefix=/tmp/code-server --version 4.90.3
/tmp/code-server/bin/code-server --auth none --port 13337 >/tmp/code-server.log 2>&1 &
EOT

Expand Down
2 changes: 1 addition & 1 deletion 502-coder-templates/statefulset-docker/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ resource "coder_agent" "main" {
set -e
# install and start code-server
curl -fsSL https://code-server.dev/install.sh | sh -s -- --method=standalone --prefix=/tmp/code-server --version 4.90.3
curl -fsSL https://raw.githubusercontent.com/coder/code-server/main/install.sh | sh -s -- --method=standalone --prefix=/tmp/code-server --version 4.90.3
/tmp/code-server/bin/code-server --auth none --port 13337 >/tmp/code-server.log 2>&1 &
EOT

Expand Down

0 comments on commit d59e98a

Please sign in to comment.