Rename docker-compose.yaml to docker-compose.yml

This commit is contained in:
2025-06-18 11:04:31 -06:00
committed by GitHub
parent 17b20e20ce
commit 1bd0ee4d5c

15
docker-compose.yml Normal file
View File

@@ -0,0 +1,15 @@
version: '3.8'
services:
apache-php:
image: php:8.3-apache
container_name: apache-php
ports:
- "8080:80"
volumes:
- ./html:/var/www/html
environment:
- APACHE_DOCUMENT_ROOT=/var/www/html
build:
context: .
dockerfile: dockerfile