Added docker compose for local developing

This commit is contained in:
Mauro Mugnaini 2023-07-26 17:47:00 +02:00
parent 82d5b25ff4
commit f62af1058a
1 changed files with 8 additions and 0 deletions

8
docker-compose.yaml Normal file
View File

@ -0,0 +1,8 @@
version: "3.9"
services:
web:
image: nginx:latest
volumes:
- .:/usr/share/nginx/html/
ports:
- "8080:80"