10 lines
201 B
YAML
10 lines
201 B
YAML
services:
|
|
wedding-web:
|
|
image: nginx:alpine
|
|
container_name: wedding-web
|
|
restart: unless-stopped
|
|
ports:
|
|
- "127.0.0.1:8080:80"
|
|
volumes:
|
|
- ./site:/usr/share/nginx/html:ro
|