CloudShell is an out-of-the-box online Linux environment that supports nine commonly used Linux distributions. It comes with basic tools such as curl, ssh, spacevim, starship, git, tmux, and integrates development environments such as Nodejs, Python, .NET, OpenJDK, PHP, and Go.
- Node.js
- Nginx
- Docker
- Docker-Compose
First, make sure you have prepared the above environment
npm startor
node ./src/main.jsNote: The project dynamically modifies the nginx configuration, so it is recommended to debug in the development environment. The default will modify the file /etc/nginx/sites-enabled/default.
If the server is running, it is recommended to use Docker images to run it, otherwise it may affect your ability to proxy other projects
Clone the repo
git clone https://github.com/ConchBrainClub/CloudShell.gitEnter the container directory and build the user container image
cd ./container
bash ./build.shIf you don't want to rebuild, you can also directly pull the user container image from Alibaba Cloud ECR
bash ./aliyun.shBuild CloudShell image
cd ..
docker build . --file Dockerfile --tag lixinyang/cloudshell:lateststartup
docker-compose upvisit http://localhost/
First, make sure that Docker and Docker-Compose are installed on your server.
Create a docker-compose.yml file and write the following content.
version: '3.4'
services:
cloudshell:
image: lixinyang/cloudshell
ports:
- "80:80"
restart: always
volumes:
- /usr/bin/docker:/usr/bin/docker
- /var/run/docker.sock:/var/run/docker.sock
user: rootPull image from Alibaba Cloud. ** Follow the script below to pull the image from Alibaba Cloud**.
- assets/pull-images.sh
images=(latest ubuntu centos debian alpine archlinux kali fedora opensuse)
for item in ${images[@]};
do
echo docker pull cloudshell:${item}
docker pull registry.cn-shenzhen.aliyuncs.com/lllxy/cloudshell:${item}
docker tag registry.cn-shenzhen.aliyuncs.com/lllxy/cloudshell:${item} lixinyang/cloudshell:${item}
docker rmi registry.cn-shenzhen.aliyuncs.com/lllxy/cloudshell:${item}
done
docker images | grep none | awk '{print $3}' | xargs docker rmi
echo "Pull image from Aliyun was successful!"After pull image complete, execute docker-compose up and then visit http://localhost/.
For port forwarding function, see this blog


