diff --git a/README.md b/README.md index 055217a..01e09dd 100644 --- a/README.md +++ b/README.md @@ -1 +1,7 @@ -# dbp Website \ No newline at end of file +# dbp Website + + +Local development: + +* `docker-compose up` +* http://localhost:8080 diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..83b22c2 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,11 @@ +version: '3.8' + +services: + nginx: + image: nginx:latest + ports: + - "8080:80" + volumes: + - ./default.conf:/etc/nginx/default.conf + - ./www:/usr/share/nginx/html + restart: always