Pull the image# docker pull codercom/code-server # docker images REPOSITORY TAG IMAGE ID CREATED SIZE codercom/code-server latest f3ac734fcec8 12 days ago 802MB Create a mount directory# CODE=/home/docker/code # mkdir $CODE && cd $CODE Configuration FilesMethod 1: Export from the container Start a container: # docker run -d -u root -p 8088:8080 --name code-server -v $CODE:/home/code codercom/code-server # docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 97707c93cb41 codercom/code-server "/usr/bin/entrypoint…" 3 hours ago Up 3 hours 0.0.0.0:8088->8080/tcp, :::8088->8080/tcp code-server Pull out the configuration file: # docker cp code-server:/root/.config/code-server/config.yaml $CODE/ # cat $CODE/config.yaml bind-addr: 127.0.0.1:8080 auth: password password: 59bd4df2841fbc77d67f674f cert: false Change password: 123456 Method 2: Create a new configuration file directly # vim $CODE/config.yaml bind-addr: 127.0.0.1:8080 auth: password password: 123456 cert: false Start the service# docker stop code-server && docker rm code-server # docker run -d -u root \ -p 8088:8080 \ --name code-server \ -v $CODE/config.yaml:/root/.config/code-server/config.yaml \ -v $CODE:/home/code \ codercom/code-server For example, visit This is the end of this article about docker deployment of code-server. For more relevant docker deployment of code-server content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Solution to data duplication when using limit+order by in MySql paging
>>: How to use Vue to implement CSS transitions and animations
Method 1: Modify the configuration file (need to ...
Due to the needs of the work project, song playba...
Table of contents Preface 1. Preview of office do...
What is HTTP Compression Sometimes, relatively la...
1. Spring boot does not support jsp jar package, ...
Preface We often need to do something based on so...
1. Background execution Generally, programs on Li...
Priority The reason why placing the same conditio...
This article example shares the specific code of ...
There has been a lot of discussion about H1 recent...
1. Use Canvas images as CSS background images The...
Table of contents Conclusion first question Solut...
Preface To be honest, I've been feeling very ...
Environmental requirements: IP hostname 192.168.1...
Transactions ensure the atomicity of multiple SQL...