10 lines
208 B
YAML
10 lines
208 B
YAML
services:
|
|
web:
|
|
image: nginx:alpine
|
|
container_name: home-lucasacchi-web
|
|
ports:
|
|
- "8080:80"
|
|
volumes:
|
|
- ./index.html:/usr/share/nginx/html/index.html:ro
|
|
restart: unless-stopped
|