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.

25 lines
586 B

3 years ago
  1. # For more information: https://laravel.com/docs/sail
  2. version: '3'
  3. services:
  4. laravel.test:
  5. build:
  6. context: ./vendor/laravel/sail/runtimes/8.0
  7. dockerfile: Dockerfile
  8. args:
  9. WWWGROUP: '${WWWGROUP}'
  10. image: sail-8.0/app
  11. ports:
  12. - '${APP_PORT:-80}:80'
  13. environment:
  14. WWWUSER: '${WWWUSER}'
  15. LARAVEL_SAIL: 1
  16. volumes:
  17. - '.:/var/www/html'
  18. networks:
  19. - sail
  20. {{depends}}
  21. {{services}}
  22. networks:
  23. sail:
  24. driver: bridge
  25. {{volumes}}