Matrix Docker Ansible eploy
Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- # 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"]
|