docker-compose.yml 303 B

1234567891011121314151617
  1. version: "3.5"
  2. services:
  3. nginx:
  4. build: ./nginx/
  5. ports:
  6. - 81:80
  7. volumes:
  8. - "${PROJECT_ROOT}:/var/www/html"
  9. - "${LOG_ROOT}:/var/log:rw"
  10. networks:
  11. - server
  12. # depends_on:
  13. # - php
  14. networks:
  15. server: