建立一個docker image

全網第一菜雞發表於2021-05-19

1,mkdir docker
2,建立一個檔案Dockerfile vim Dockerfile
3,編輯這個檔案,輸入內容:
1,FROM alpine:latest
MAINTAINER xbf
CMD echo “hello docker”
2,FROM ubuntu
MAINTAINER admin@xyqfrms.xyz
RUN sed -i ‘s/archive.ubuntu.com/mirrors.ustc.edu.cn/g’ /etc/apt/sources.list
RUN apt-get update
RUN apt-get install -y nginx
COPY index.html /var/www/html
ENTRYPOINT [“usr/sbin/nginx”, “-g”, “daemon off;”]
EXPOSE 80
4,命令:docker build -t hello_docker . 完成!

本作品採用《CC 協議》,轉載必須註明作者和本文連結

相關文章