mirror/docker-compose.yml

10 lines
172 B
YAML
Raw Permalink Normal View History

services:
web:
image: httpd:latest
container_name: web
restart: unless-stopped
volumes:
- ./html:/usr/local/apache2/htdocs
ports:
- '80:80'