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
+65-20Lines changed: 65 additions & 20 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,68 +10,113 @@ know more about crAPI, please check [crAPI's overview][overview].
10
10
11
11
## QuickStart Guide
12
12
13
-
### Docker and docker-compose
13
+
### Docker and dockercompose
14
14
15
-
You'll need to have Docker and docker-compose installed and running on your host system. Also, the version of docker-compose should be `1.27.0` or above. Check your docker-compose version using:
15
+
You'll need to have Docker and dockercompose installed and running on your host system. Also, the version of dockercompose should be `1.27.0` or above. Check your dockercompose version using:
16
16
```
17
-
docker-compose version
17
+
dockercompose version
18
18
```
19
19
20
+
**Upgrade your docker compose version if you get errors like**
21
+
22
+
```ERROR: Invalid interpolation format for ...```
23
+
20
24
#### Using prebuilt images
21
-
You can use prebuilt images generated by our CI workflow.
25
+
You can use prebuilt images generated by our CI workflow by downloading the docker compose and **.env** files.
docker compose -f docker-compose.yml --compatibility up -d
41
+
```
42
+
43
+
To override server configurations, change the values of the variables present in the **.env** file or add the respective variables to the start of the docker compose command.
29
44
30
-
docker-compose pull
45
+
For example to expose the system to all network interfaces.
31
46
32
-
docker-compose -f docker-compose.yml --compatibility up -d
47
+
```
48
+
LISTEN_IP="0.0.0.0" docker compose -f docker-compose.yml --compatibility up -d
docker compose -f docker-compose.yml --compatibility up -d
63
+
```
64
+
65
+
To override server configurations, change the values of the variables present in the **.env** file or add the respective variables to the start of the docker compose command.
39
66
40
-
docker-compose pull
67
+
For example to expose the system to all network interfaces.
41
68
42
-
docker-compose -f docker-compose.yml --compatibility up -d
69
+
```
70
+
LISTEN_IP="0.0.0.0" docker compose -f docker-compose.yml --compatibility up -d
docker compose -f docker-compose.yml --compatibility up -d
87
+
```
88
+
89
+
To override server configurations, change the values of the variables present in the **.env** file or add the respective variables to the start of the docker compose command.
51
90
52
-
VERSION=develop docker-compose pull
91
+
For example to expose the system to all network interfaces.
53
92
54
-
VERSION=develop docker-compose -f docker-compose.yml --compatibility up -d
93
+
```
94
+
LISTEN_IP="0.0.0.0" docker compose -f docker-compose.yml --compatibility up -d
docker-compose -f docker-compose.yml --compatibility up -d
108
+
dockercompose -f docker-compose.yml --compatibility up -d
67
109
```
110
+
111
+
To override server configurations, change the values of the variables present in the **.env** file or add the respective variables to the start of the docker compose command.
68
112
69
-
- To Stop and Cleanup crAPI
113
+
For example to expose the system to all network interfaces.
70
114
71
115
```
72
-
docker-compose -f docker-compose.yml --compatibility down –volumes
116
+
LISTEN_IP="0.0.0.0" dockercompose -f docker-compose.yml --compatibility up -d
## Troubleshooting guide for general issues while installing and running crAPI
120
-
If you need any help with installing and running crAPI you can check out this guide: [Troubleshooting guide crAPI](https://github.com/OWASP/crAPI/blob/main/docs/troubleshooting.md). If this doesn't solve your problem, please create an issue in Github Issues.
165
+
If you need any help with installing and running crAPI you can check out this guide: [Troubleshooting guide crAPI](https://github.com/OWASP/crAPI/blob/main/docs/troubleshooting.md). If this doesn't solve your problem, please create an issue in Github Issues.
0 commit comments