Skip to content

Commit 896d8ee

Browse files
Some README adjustments
1 parent 7c58973 commit 896d8ee

4 files changed

Lines changed: 6 additions & 5 deletions

File tree

EXPERIMENTS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ ___If your OS supports neither batch nor bash scripts, you can substitute the sc
1717
in this section with the following:___
1818
#### build-docker-image.(bat|sh)
1919
```shell
20-
docker build -t match-experiments --build-arg USER_ID="1000" --build-arg GROUP_ID="1000" .
20+
docker build -t match-experiments .
2121
```
2222
#### experiment.(bat|sh)
2323
```shell
24-
docker run --rm --user 1000:1000 -v PATH_TO_PARENT_DIR/results:/home/user/results match-experiments PARAMETERS
24+
docker run --rm -v PATH_TO_PARENT_DIR/results:/home/user/results match-experiments PARAMETERS
2525
```
2626
#### stop-all-experiments.(bat|sh)
2727
```shell

INSTALL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ build-docker-image.bat
3939
`build-docker-image` is a convenience script that only provides an additional layer of abstraction for users that are not
4040
familiar with docker. If your system supports neither `batch` nor `bash`, you can instead execute the following:
4141
```shell
42-
docker build -t match-experiments --build-arg USER_ID=1000 --build-arg GROUP_ID=1000 .
42+
docker build -t match-experiments .
4343
```
4444

4545
The generated Docker image will have the name `match-experiments`.
@@ -65,7 +65,7 @@ If your system supports neither `batch` nor `bash`, you can instead execute the
6565
the parent directory of where the results are to be stored:
6666
```shell
6767
# Validation
68-
docker run --rm --user 1000:1000 -v PATH_TO_PARENT_DIR/results:/home/user/results match-experiments validate
68+
docker run --rm -v PATH_TO_PARENT_DIR/results:/home/user/results match-experiments validate
6969
```
7070

7171
You can cancel the process at any time by opening the RaQuN's root directory in a new terminal window and calling:

experiment.bat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
@echo Starting %*
22
@if not exist "results" mkdir results
3+
34
@docker run --rm -v "%cd%/results":"/home/user/results" match-experiments %*
45

56
@pause

stop-all-experiments.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
@echo "Stopping all running experiments. This will take a moment..."
2-
FOR /f "tokens=*" %%i IN ('docker ps -a -q --filter "ancestor=match-experiments"') DO docker stop %%i
2+
@FOR /f "tokens=*" %%i IN ('docker ps -a -q --filter "ancestor=match-experiments"') DO docker stop %%i
33
@echo "...done."

0 commit comments

Comments
 (0)