forked from ahmad-Wattar/Websuche-und-Information-Retrieval
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
28 lines (17 loc) · 781 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
To test the proposed solution create a docker container and run the provided bash files within it.
1. Creating image from the main directory of the repository:
sudo docker build -f ./Docker/Dockerfile -t <imagename>
2. Creating container:
sudo docker run -t -d --name <dockername> <imagename>
3. Running container:
sudo docker exec -it <dockername> /bin/bash
4. Executing files within the container:
bash my-software.sh
bash eval.sh
In case of errors try commands without sudo.
To remove the container run following commands outside of the container:
sudo docker ps -a
Copy CONTAINER ID and execute the following commands:
sudo docker stop <CONTAINER ID>
sudo docker rm <CONTAINER ID>
The final version used in Touche Lab 2021 is stored under final_version_for_tira.py