diff --git a/NOTES.md b/NOTES.md index 099e0bc..eea2073 100644 --- a/NOTES.md +++ b/NOTES.md @@ -5,7 +5,6 @@ auth_request allows all incoming requests to be forwarded to an authentication endpoint - ## Versions Basic versioning is now available with the ocfl_versioned handler diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..9cd6a96 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,31 @@ +version: '3.1' +networks: + main: + +services: + nginx: + image: mikelynch/nginx-ocfl:v1.0.5 + ports: + - "8080:8080" + restart: always + volumes: + - "./test_repos:/usr/share/nginx/html" + expose: + - "8080" + + solr: + image: solr:7.4 + ports: + - "8983:8983" + expose: + - "8983" + volumes: + - "solr_data:/opt/solr/server/solr/mycores" + entrypoint: + - docker-entrypoint.sh + - solr-precreate + - mycore + +volumes: + solr_data: +