Matrix Docker Ansible eploy
Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- # 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"]
|