在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,如果你使用的是其他發行版的容器,請根據其特定的軟件包管理方式進行安裝。