diff --git a/apache-php/.docker/docker-compose.yaml b/apache-php/.docker/docker-compose.yaml new file mode 100644 index 0000000..817b0fc --- /dev/null +++ b/apache-php/.docker/docker-compose.yaml @@ -0,0 +1,10 @@ +services: + web: + build: + context: app + target: dev-envs + ports: + - '80:80' + volumes: + - /var/run/docker.sock:/var/run/docker.sock + - ./app:/var/www/html/ diff --git a/apache-php/README.md b/apache-php/README.md index 1ef50ad..908faf4 100644 --- a/apache-php/README.md +++ b/apache-php/README.md @@ -54,3 +54,14 @@ Stop and remove the containers ``` $ docker compose down ``` + +## Use with Docker Development Environments + +You can use this sample with the Dev Environments feature of Docker Desktop. + +![Screenshot of creating a Dev Environment in Docker Desktop](../dev-envs.png) + +To develop directly on the services inside containers, use the HTTPS Git url of the sample: +``` +https://github.com/docker/awesome-compose/tree/master/apache-php +``` diff --git a/apache-php/app/Dockerfile b/apache-php/app/Dockerfile index 0b19f22..97ccc04 100644 --- a/apache-php/app/Dockerfile +++ b/apache-php/app/Dockerfile @@ -1 +1,22 @@ -FROM php:8.0.7-apache +# syntax=docker/dockerfile:1.4 + +FROM --platform=$BUILDPLATFORM php:8.0.9-apache as builder + +CMD ["apache2-foreground"] + +FROM builder as dev-envs + +RUN <