diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..8c04900 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,8 @@ +version: "3.9" +services: + web: + image: nginx:latest + volumes: + - .:/usr/share/nginx/html/ + ports: + - "8080:80"