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
+37-7Lines changed: 37 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,25 +13,55 @@ metadata and outputs for posterior analysis.
13
13
You can install DISK using Docker or [building from source](./building.md)
14
14
We recommend to use `docker` to install DISK.
15
15
16
+
### Requeriments:
17
+
18
+
To install DISK you need to meet the following requirements:
19
+
20
+
- Docker
21
+
- Docker Compose
22
+
- Operating System: Linux, macOS, Windows
23
+
- Architecture: x86_64
24
+
- Memory: 2GB
25
+
- CPU: 1 core
16
26
17
27
### Docker
18
28
19
-
Install DISK with docker
29
+
Install DISK with docker.
30
+
31
+
This command will install DISK in your current directory.
32
+
20
33
21
34
```bash
22
-
docker-compose up -d
35
+
$ docker-compose up -d
23
36
```
24
37
38
+
Now, you can verify if DISK is running.
25
39
26
-
## Usage
40
+
```bash
41
+
$ docker-compose ps
42
+
```
27
43
28
-
### Check the server
44
+
You will see the following output:
29
45
30
-
Open http://localhost:8080/disk-server/vocabulary to check that the local repository server is working fine. It might take a little while to open it for the first time as it downloads vocabularies from the internet.
core_backend_1 catalina.sh run Up 0.0.0.0:8080->8080/tcp,:::8080->8080/tcp
50
+
core_endpoint_1 /docker-entrypoint.sh java ... Up 0.0.0.0:3030->3030/tcp,:::3030->3030/tcp
51
+
core_frontend_1 nginx -g daemon off; Up 0.0.0.0:8000->80/tcp,:::8000->80/tcp
52
+
core_wings_1 catalina.sh run Up 0.0.0.0:7080->8080/tcp,:::7080->8080/tcp
53
+
```
31
54
32
-
### Check the client
55
+
If the state is `Up`, the service are running.
56
+
You z`can access the web interface at `http://localhost:8000`.
33
57
34
-
Open http://localhost:8000/index.html to access the Disk UI that connects with the local repository
58
+
## Troubleshooting
59
+
60
+
### Check the server
61
+
62
+
Sometimes, the server is not responding. You can check if the server is running by running the following command:
63
+
64
+
Open http://localhost:8080/disk-server/vocabulary to check that the local repository server is working fine. It might take a little while to open it for the first time as it downloads vocabularies from the internet.
0 commit comments