選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

docker-compose.yml 266B

12345678910111213
  1. version: '3'
  2. services:
  3. nginx:
  4. container_name: "nginx-proxy"
  5. build:
  6. context: .
  7. dockerfile: ./nginx/Dockerfile
  8. image: proxy-nginx
  9. ports:
  10. - "80:80"
  11. - "443:443"
  12. restart: always