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 363B

12345678910111213141516171819
  1. version: '3'
  2. services:
  3. nginx:
  4. build:
  5. context: .
  6. dockerfile: ./nginx/Dockerfile
  7. image: proxy-nginx
  8. container_name: reverse-proxy
  9. ports:
  10. - "80:80"
  11. - "443:443"
  12. restart: always
  13. networks:
  14. - staging_network
  15. networks:
  16. staging_network:
  17. external: true