docker-compose.yml 361 B

123456789101112131415161718
  1. version: '3'
  2. services:
  3. cuspsr:
  4. image: my-php-fpm:2021.3
  5. container_name: "cuspsr"
  6. volumes:
  7. - ./:/www
  8. cuspsr-nginx:
  9. image: library/nginx:latest
  10. container_name: "cuspsr-nginx"
  11. ports:
  12. - 8002:80
  13. volumes:
  14. - ./:/usr/share/nginx/html
  15. - ./docker/nginx/conf/conf.d:/etc/nginx/conf.d
  16. depends_on:
  17. - cuspsr