Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

13 rivejä
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"]