File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -38,4 +38,4 @@ CMD python argU/preprocessing/mongodb.py -i /input \
38
38
&& cp /terrier-core-4.2/var/results/DPH_0.res /ArgU/resources/terrier.res \
39
39
&& rm /terrier-core-4.2/var/results/DPH_0.res \
40
40
&& python -m argU -d \
41
- && python -m argU -m -s $RUNTYPE -o /output
41
+ && python -m argU -m -s $RUN_TYPE -o /output
Original file line number Diff line number Diff line change 15
15
- Build the image
16
16
2 . ` $ docker run --name argu-mongo -p 27017:27017 -d --rm mongo `
17
17
- Starts a MonoDB container
18
- 3 . ` $ docker run -e RUNTYPE =<run-type> -v <input-dir-path>:/input -v <output-dir-path>:/output --name argu --rm -it --network="host" argu `
18
+ 3 . ` $ docker run -e RUN_TYPE =<run-type> -v <input-dir-path>:/input -v <output-dir-path>:/output --name argu --rm -it --network="host" argu `
19
19
- Runs the container
20
20
- Run Types
21
21
- ` None `: No sentiments
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- while getopts S :i:o: option
3
+ while getopts s :i:o: option
4
4
do
5
5
case " ${option} "
6
6
in
11
11
done
12
12
13
13
docker run --name argu-mongo -p 27017:27017 -d --rm mongo
14
- docker run -e RUNTYPE =$runType -v $inputDataset :/input -v $outputDir :/output --name argu --rm -it --network=" host" argu
14
+ docker run -e RUN_TYPE =$runType -v $inputDataset :/input -v $outputDir :/output --name argu --rm -it --network=" host" argu
15
15
docker stop argu-mongo
You can’t perform that action at this time.
0 commit comments