diff options
author | crupest <crupest@outlook.com> | 2024-08-14 00:28:12 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2024-08-14 11:45:44 +0800 |
commit | fa5eb7f373ae37ba5e9838aeb75809e0c0884cea (patch) | |
tree | c91bc81d46f2d049765fb6f5146828becd431c04 /docker/crupest-debian-dev/bootstrap | |
parent | d63d1a97d933b7b000a059ac97297dbdef8bf346 (diff) | |
download | crupest-fa5eb7f373ae37ba5e9838aeb75809e0c0884cea.tar.gz crupest-fa5eb7f373ae37ba5e9838aeb75809e0c0884cea.tar.bz2 crupest-fa5eb7f373ae37ba5e9838aeb75809e0c0884cea.zip |
fix(docker/debian-dev): code-server args and work dir.
Diffstat (limited to 'docker/crupest-debian-dev/bootstrap')
-rw-r--r-- | docker/crupest-debian-dev/bootstrap/bash-profile/code-server.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/crupest-debian-dev/bootstrap/bash-profile/code-server.bash b/docker/crupest-debian-dev/bootstrap/bash-profile/code-server.bash index 7cc6770..fd88d15 100644 --- a/docker/crupest-debian-dev/bootstrap/bash-profile/code-server.bash +++ b/docker/crupest-debian-dev/bootstrap/bash-profile/code-server.bash @@ -7,7 +7,7 @@ if which "$CODE_SERVER_PROGRAM" > /dev/null 2>&1; then if ! pgrep -f "$CODE_SERVER_PROGRAM" > /dev/null 2>&1; then echo "code-server is not running, starting..." mkdir -p ~/.local/share/code-server - "$CODE_SERVER_PROGRAM" "--bind-addr", "0.0.0.0:$CODE_SERVER_PORT" \ + "$CODE_SERVER_PROGRAM" "--bind-addr" "0.0.0.0:$CODE_SERVER_PORT" \ > ~/.local/share/code-server/log 2> ~/.local/share/code-server/error & fi else |