买服务器,选ubuntu 20.04 LTS
登录/配置服务器
cd .ssh/
vim config
ssh ubuntu@ +“主机ip地址”
sudo adduser acs
sudo usermod -aG sudo acs
ssh-copy-id txserver
安装tmux和docker 登录自己的服务器,然后安装tmux:
sudo apt-get update
sudo apt-get install tmux
scp .bashrc .vimrc .tmux.conf txserver:
docker环境配置
(服务器里的docker容器有点像本地的虚拟机) ubuntu安装docker
sudo usermod -aG docker $USER
newgrp docker
docker save -o ubuntu_20_04.tar ubuntu:20.04
chmod +r ubuntu_20_04.tar
docker rmi ubuntu:20.04
docker load -i ubuntu_20_04.tar
docker version
docker容器container
腾讯云docker配置 docker就差不多就相当于反复套娃,这样理解就好。
|