11 lines
267 B
YAML
11 lines
267 B
YAML
services:
|
|
web:
|
|
image: nginx:alpine
|
|
container_name: home-lucasacchi-web
|
|
ports:
|
|
- "8380:80"
|
|
volumes:
|
|
- ./index.html:/usr/share/nginx/html/index.html:ro
|
|
- ./favicon.svg:/usr/share/nginx/html/favicon.svg:ro
|
|
restart: unless-stopped
|