version: '3.8' services: php: container_name: php image: php:8.0-fpm env_file: - config.env ports: - '9000:9000' volumes: - ./site:/var/www/html nginx: container_name: nginx image: nginx:latest ports: - '8080:80' volumes: - ./nginx/default.conf:/etc/nginx/conf.d/default.conf volumes_from: - php solr: container_name: solr image: solr:latest ports: - '8983:8983' volumes: - ./solrdata:/var/solr