Docker Compose For PHP Development
[1] Prep docker-compose.yml version: '3.7' services: web: build: context: . dockerfile: Dockerfile ports: - "8080:80" # Expose port 80 inside the container to port 8080 on the host machine volumes: - ./src:/var...
Nov 18, 20241 min read4