Skip to content

Commit

Permalink
Added docker-compose.yml to the repo
Browse files Browse the repository at this point in the history
  • Loading branch information
spikelynch committed Aug 26, 2019
1 parent 5cb9bcd commit 2fcca36
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
1 change: 0 additions & 1 deletion NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
31 changes: 31 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -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:

0 comments on commit 2fcca36

Please sign in to comment.