# local-web-code-server **Repository Path**: local-develop-env/local-web-code-server ## Basic Information - **Project Name**: local-web-code-server - **Description**: 本地化web-code-server - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-03-26 - **Last Updated**: 2025-12-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 数据挂载 - /local-web-code-server/:/local-web-code-server/ - /extensions-dir:/extensions-dir # Code-Server 启动 - 配置在 `start.sh` ```bash bash start.sh ``` ```bash []# start-code-server.sh [2024-03-26T10:12:15.298Z] info code-server 4.0.0 0f395955515207f9b461ffdd2a595f35311dd05f [2024-03-26T10:12:15.299Z] info Using user-data-dir ~/.local/share/code-server [2024-03-26T10:12:15.308Z] info Using config file ~/.config/code-server/config.yaml [2024-03-26T10:12:15.308Z] info HTTP server listening on http://0.0.0.0:8443/ [2024-03-26T10:12:15.308Z] info - Authentication is enabled [2024-03-26T10:12:15.308Z] info - Using password from $PASSWORD [2024-03-26T10:12:15.308Z] info - Not serving HTTPS ``` - `docker-compoose.yml` 或者 `docker-run.sh` 启动容器 # Ssh 安装 - 配置在 `sshd/sshd_config` ```bash bash install-sshd.sh ``` ```bash ssh-copy-id -i ~/.ssh/id_rsa.pub -p 20022 root@192.168.150.148 ``` - 密码:admin123 # Node 开发环境安装 ```bash bash install-node.sh ``` # Vsix 插件安装 ```bash bash wget_vsix.sh ``` ```bash bash install_vsix.sh ``` # git 配置 ```bash git config --global user.name "jack.li" git config --global user.email 1050518702@qq.com ```