9 lines
168 B
YAML
9 lines
168 B
YAML
services:
|
|
web:
|
|
image: nginx:alpine
|
|
ports:
|
|
- "8088:80"
|
|
volumes:
|
|
- ./index.html:/usr/share/nginx/html/index.html:ro
|
|
restart: unless-stopped
|