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