摘要:
Docker-compose.yml文件 version: "3" services: nginx: image: nginx:alpine ports: - 80:80 volumes: - ./html:/usr/share/nginx/html - ./conf/nginx.conf:/etc 阅读全文
摘要:
一些常用docker命令 # 拉取 docker pull nginx # 查看镜像 docker images # 运行一个容器 -d后台运行不阻塞 -p端口映射,宿主机:容器 -v存储卷 -it阻塞运行 --link nginx:nginx 将nginx名称的容器映射为nginx域名给当前启动的 阅读全文