File tree Expand file tree Collapse file tree 3 files changed +3
-1
lines changed
root/etc/services.d/openvscode-server Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -251,6 +251,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
251
251
252
252
## Versions
253
253
254
+ * ** 10.12.21:** - Update deprecated connectionToken arg.
254
255
* ** 30.11.21:** - Fix app folder permissions, add the optional sudo password vars.
255
256
* ** 29.11.21:** - Create ` .profile ` and ` .bashrc ` for the user.
256
257
* ** 29.11.21:** - Release ` insiders ` tag.
Original file line number Diff line number Diff line change @@ -61,6 +61,7 @@ app_setup_block: |
61
61
62
62
# changelog
63
63
changelogs :
64
+ - { date: "10.12.21:", desc: "Update deprecated connectionToken arg." }
64
65
- { date: "30.11.21:", desc: "Fix app folder permissions, add the optional sudo password vars." }
65
66
- { date: "29.11.21:", desc: "Create `.profile` and `.bashrc` for the user." }
66
67
- { date: "29.11.21:", desc: "Release `insiders` tag." }
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ if [ -n "$CONNECTION_SECRET" ]; then
4
4
CODE_ARGS="${CODE_ARGS} --connection-secret ${CONNECTION_SECRET}"
5
5
echo "Using connection secret from ${CONNECTION_SECRET}"
6
6
elif [ -n "$CONNECTION_TOKEN" ]; then
7
- CODE_ARGS="${CODE_ARGS} --connectionToken ${CONNECTION_TOKEN}"
7
+ CODE_ARGS="${CODE_ARGS} --connection-token ${CONNECTION_TOKEN}"
8
8
echo "Using connection token ${CONNECTION_TOKEN}"
9
9
else
10
10
if [ ! -f "/config/.secretkey" ]; then
You can’t perform that action at this time.
0 commit comments