diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index 18bd1da..0000000 --- a/docker-compose.yml +++ /dev/null @@ -1,30 +0,0 @@ -version: "3" - -services: - wikipathways-virtuoso: - image: openlink/virtuoso-opensource-7:7.2.11 - restart: always - container_name: wikipathways-virtuoso - volumes: - - /home/MarvinMartens/snorql-extended/import:/import # directory where RDF files are located to be imported into Virtuoso - - /home/MarvinMartens/snorql-extended/data:/opt/virtuoso-opensource/database # directory to persist the Virtuoso database - environment: - - DBA_PASSWORD=dbaisapasswordthatshouldbeupdated - - SPARQL_UPDATE=false - ports: - - "8900:8890" - - "1134:1111" - snorql: - image: aammar/snorql-httpd:latest - restart: always - container_name: wikipathways-snorql -# volumes: -# - /home/MarvinMartens/snorql-extended:/usr/local/apache2/htdocs # To customize the snorql interface, clone the GitHub repo and use its directory as SNORQL_WEB_FILES_DIR - environment: - - SNORQL_ENDPOINT=https://sparql.wikipathways.org/sparql/ - - SNORQL_EXAMPLES_REPO=https://github.com/wikipathways/SPARQLQueries - - SNORQL_TITLE=WikiPathways SNORQL UI - - DEFAULT_GRAPH=http://rdf.wikipathways.org/ - ports: - - "8091:80" - - "4431:443"