Matrix Docker Ansible eploy
您最多选择25个主题
主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
|
- # Pull nginx base image
- FROM nginx:latest
-
- # Expost port 80
- EXPOSE 80
-
- # Copy custom configuration file from the current directory
- COPY nginx.conf /etc/nginx/nginx.conf
-
- # Start up nginx server
- CMD ["nginx"]
|