docker-compose.yml 410 B

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