Skip to content

Commit

Permalink
Add settings to Code Server to not auto-update installed extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellutz committed Oct 9, 2024
1 parent d3a5f84 commit 40edcc5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion codeserver/ubi9-python-3.11/run-code-server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ universal_json_settings='{
"python.defaultInterpreterPath": "/opt/app-root/bin/python3",
"telemetry.telemetryLevel": "off",
"telemetry.enableTelemetry": false,
"workbench.enableExperiments": false
"workbench.enableExperiments": false,
"extensions.autoCheckUpdates": false,
"extensions.autoUpdate": false
}'

# Define python debuger settings
Expand Down
4 changes: 3 additions & 1 deletion codeserver/ubi9-python-3.9/run-code-server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ universal_json_settings='{
"python.defaultInterpreterPath": "/opt/app-root/bin/python3",
"telemetry.telemetryLevel": "off",
"telemetry.enableTelemetry": false,
"workbench.enableExperiments": false
"workbench.enableExperiments": false,
"extensions.autoCheckUpdates": false,
"extensions.autoUpdate": false
}'

# Define python debuger settings
Expand Down

0 comments on commit 40edcc5

Please sign in to comment.