10 lines
172 B
YAML
10 lines
172 B
YAML
|
services:
|
||
|
web:
|
||
|
image: httpd:latest
|
||
|
container_name: web
|
||
|
restart: unless-stopped
|
||
|
volumes:
|
||
|
- ./html:/usr/local/apache2/htdocs
|
||
|
ports:
|
||
|
- '80:80'
|