Skip to content

Commit

Permalink
[#23] Configuration working on linux without configuration
Browse files Browse the repository at this point in the history
No need to .env file and s-pipes editor is working.
  • Loading branch information
blcham committed Aug 3, 2023
1 parent fa09007 commit aa05d11
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: '3.7'
version: '3'

services:
s-pipes-editor-ui:
Expand Down Expand Up @@ -26,17 +26,18 @@ services:
- s-pipes-engine
- rdf4j
environment:
- SCRIPTPATHS=${SCRIPTPATHS}
- SCRIPTRULES=${SCRIPTRULES}
- SCRIPTPATHS=${SCRIPTPATHS:-${PWD}/../s-pipes-modules;${PWD}/../s-pipes/doc/examples}
- SCRIPTRULES=${SCRIPTRULES:-${PWD}/../s-pipes-editor/src/main/resources/rules}
- ENGINEURL=http://s-pipes-engine:8080/s-pipes/
- RDF4J_REPOSITORYURL=http://rdf4j:8080/rdf4j-server/repositories
- RDF4J_REPOSITORYNAME=${RDF4J_REPOSITORYNAME}
- RDF4J_PCONFIGURL=${RDF4J_PCONFIGURL}
- RDF4J_REPOSITORYURL=${RDF4J_SERVER_URL:-http://rdf4j:8080/rdf4j-server}/repositories
- RDF4J_REPOSITORYNAME=${RDF4J_REPOSITORYNAME:-s-pipes-hello-world}
- RDF4J_PCONFIGURL=${RDF4J_PCONFIGURL:-../s-pipes/doc/examples/hello-world/config.ttl}
volumes:
- /tmp:/tmp
- ${PATH_ROOT}:/home
- ${SHARED_ROOT:-/home}:${SHARED_ROOT:-/home}
- /usr/local/tomcat/temp/:/usr/local/tomcat/temp/


s-pipes-engine:
image: 'ghcr.io/kbss-cvut/s-pipes/s-pipes-engine:latest'
# container_name: s-pipes-engine
Expand All @@ -49,10 +50,10 @@ services:
depends_on:
- rdf4j
environment:
- CONTEXTS_SCRIPTPATHS=${SCRIPTPATHS}
- CONTEXTS_SCRIPTPATHS=${SCRIPTPATHS:-${PWD}/../s-pipes-modules;${PWD}/../s-pipes/doc/examples}
volumes:
- /tmp:/tmp
- ${PATH_ROOT}:/home
- ${SHARED_ROOT:-/home}:${SHARED_ROOT:-/home}
- /usr/local/tomcat/temp/:/usr/local/tomcat/temp/

rdf4j:
Expand Down

0 comments on commit aa05d11

Please sign in to comment.