Linux 通过docker安装nginx
Posted 满招损,谦受益
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux 通过docker安装nginx相关的知识,希望对你有一定的参考价值。
1、Linux docker通过yum安装
https://blog.csdn.net/GMingZhou/article/details/94024453
https://qizhanming.com/blog/2019/01/25/how-to-install-docker-ce-on-centos-7
开机启动docker命令:
sudo systemctl enable docker
手动启动docker服务:
sudo systemctl start docker
验证 Docker CE 安装是否正确,可以运行 hello-world 镜像:
sudo docker run hello-world
查看Docker 镜像:
docker images
更新docker ce :
sudo yum update docker-ce
卸载docker ce:
sudo yum remove docker-ce
删除本地文件:
注意,docker 的本地文件,包括镜像(images), 容器(containers), 存储卷(volumes)等,都需要手工删除。默认目录存储在 /var/lib/docker。
sudo rm -rf /var/lib/docker
2、nginx docker镜像地址
https://hub.daocloud.io/repos/2b7310fb-1a50-48f2-9586-44622a2d1771
https://www.runoob.com/docker/docker-install-nginx.html
3、linux系统安装.Net Core SDK 或只安装运行时
打开微软官网给出的步骤:
https://blog.csdn.net/wuyu0920/article/details/81078092
https://www.microsoft.com/net/download/linux-package-manager/centos/sdk-current
https://docs.microsoft.com/zh-cn/dotnet/core/install/linux-centos
打开微软安装.net core sdk网站,运行一下命令(以root权限进行)
安装成功后 输入 dotnet --version 查看是否有版本号,看是否安装成功。(后面要通过dotnet 命令来启动项目服务)
以上是关于Linux 通过docker安装nginx的主要内容,如果未能解决你的问题,请参考以下文章