Files
gpo_lookup/templates/docker-compose-php.yaml
2025-11-07 09:40:06 -08:00

13 lines
272 B
YAML

services:
{{ container_service_name }}:
container_name: {{ container_name }}
image: php:8.0-apache
ports:
- {{ container_http_port }}:80
volumes:
- ./html:/var/www/html/
{{ extra_volumes }}
network_mode: bridge
restart: always