version: '3' services: redis-demo-php: image: my-php-fpm:2021.3 container_name: "redis-demo-php" volumes: - ./:/www redis-demo-nginx: image: library/nginx:latest container_name: "redis-demo-nginx" ports: - 80:80 - 443:443 volumes: - ./:/usr/share/nginx/html - ./docker/nginx/conf/conf.d:/etc/nginx/conf.d depends_on: - redis-demo-php