要在Docker中搭建一个简单的HTTP服务器,可以按照以下步骤操作:
docker build -t my-http-server .
docker run -d -p 80:80 my-http-server
http://localhost
http://<主机IP>