Matrix Docker Ansible eploy
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

13 行
209 B

  1. # Pull nginx base image
  2. FROM nginx:latest
  3. # Expost port 80
  4. EXPOSE 80
  5. # Copy custom configuration file from the current directory
  6. COPY nginx.conf /etc/nginx/nginx.conf
  7. # Start up nginx server
  8. CMD ["nginx"]