version: '3.8' services: web: image: nginx:latest container_name: nginx ports: - "3000:80" volumes: - ./nginx.conf:/etc/nginx/nginx.conf - ./html:/var/www/html - ./logs:/var/log/nginx restart: always depends_on: - php php: image: php:8.2-fpm volumes: - ./html:/var/www/html restart: always