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.

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