在Docker中安装Nginx可以通过以下步骤进行操作:
docker run -it --name nginx_container -p 80:80 -d ubuntu:latest
docker exec -it nginx_container bash
apt-get update
apt-get install nginx -y
service nginx start
curl localhost
如果返回Nginx的欢迎页面,则表示安装成功。
注意:以上步骤是在Ubuntu容器中安装Nginx,如果你使用的是其他发行版的容器,请根据其特定的软件包管理方式进行安装。