Matrix Docker Ansible eploy
選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
|
- # 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"]
|