You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+26-26Lines changed: 26 additions & 26 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,20 +11,21 @@ The sdaas-rdfstore requires [docker](https://www.docker.com/)
11
11
docker build -t sdaas-rdfstore .
12
12
13
13
## Smoke tests
14
+
15
+
*Note on windows user: define `export MSYS_NO_PATHCONV=1` to avoid unwanted path conversion [see this note](https://stackoverflow.com/questions/7250130/how-to-stop-mingw-and-msys-from-mangling-path-names-given-at-the-command-line#34386471)*
14
16
15
-
docker run --rm -ti --entrypoint bash sdaas-rdfstore
16
-
/sdaas-start -d --size small --readonly || echo KO
17
-
sleep 10 # some time to warmup
18
-
test -f /var/log/rdfStore/rdfStore.log || echo KO
19
-
test -f /var/lib/rdfStore/rdfStore.jnl || echo KO
20
-
/sdaas-stop || echo KO
21
-
exit
22
-
23
-
docker run --name gdaas -d -p 8080:8080 sdaas-rdfstore
24
-
docker logs -f gdaas
25
-
# point browser to http://localhost:8080/sdaas to see workbench interface
26
-
#..press ctrl-c to exit logs
27
-
docker rm -f gdaas
17
+
docker run -d --name rdfstore -p 8080:8080 sdaas-rdfstore
18
+
sleep 10;docker exec rdfstore test -f /var/lib/rdfStore/rdfStore.jnl || echo KO
0 commit comments