9 lines
165 B
YAML
9 lines
165 B
YAML
services:
|
|
nginx:
|
|
image: nginx:alpine
|
|
ports:
|
|
- "127.0.0.1:8018:80"
|
|
volumes:
|
|
- ./static:/usr/share/nginx/html:ro
|
|
restart: unless-stopped
|