File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ after we renamed the "Docker container" section into "Docker image". -->
26
26
Use the ` sourcegraph/scip-java ` Docker image to run ` scip-java ` .
27
27
28
28
``` sh
29
- $ docker run -v $( pwd) :/home/gradle --env JVM_VERSION=17 sourcegraph/scip-java:latest scip-java index
29
+ $ docker run -v $( pwd) :/sources --env JVM_VERSION=17 sourcegraph/scip-java:latest scip-java index
30
30
$ src code-intel upload # (optional) upload index to Sourcegraph
31
31
```
32
32
@@ -47,13 +47,13 @@ Use the following commands to use a different JVM version:
47
47
48
48
``` sh
49
49
# Java 8
50
- docker run -v $( pwd) :/home/gradle --env JVM_VERSION=8 sourcegraph/scip-java:latest scip-java index
50
+ docker run -v $( pwd) :/sources --env JVM_VERSION=8 sourcegraph/scip-java:latest scip-java index
51
51
52
52
# Java 11
53
- docker run -v $( pwd) :/home/gradle --env JVM_VERSION=11 sourcegraph/scip-java:latest scip-java index
53
+ docker run -v $( pwd) :/sources --env JVM_VERSION=11 sourcegraph/scip-java:latest scip-java index
54
54
55
55
# Java 17 (default)
56
- docker run -v $( pwd) :/home/gradle --env JVM_VERSION=17 sourcegraph/scip-java:latest scip-java index
56
+ docker run -v $( pwd) :/sources --env JVM_VERSION=17 sourcegraph/scip-java:latest scip-java index
57
57
```
58
58
59
59
### Java launcher
You can’t perform that action at this time.
0 commit comments