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"]