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: cvat/apps/documentation/AWS-Deployment-Guide.md
+24-1Lines changed: 24 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -6,4 +6,27 @@ Overall setup instruction is explained in [main readme file](https://github.com/
6
6
7
7
2.**On Any other AWS Machine:** We can follow the same instruction guide mentioned in the [Readme file](https://github.com/opencv/cvat/). The additional step is to add a [security group and rule to allow incoming connections](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-network-security.html).
8
8
9
-
For any of above, don't forget to add exposed AWS public IP address to `docker-compose.override.yml`.
9
+
For any of above, don't forget to add exposed AWS public IP address and port to `docker-compose.override.yml`:
10
+
11
+
You need at least 2 opened ports on your Amazon instance, for UI and Django apps.
12
+
13
+
```
14
+
version: "2.3"
15
+
16
+
services:
17
+
cvat:
18
+
environment:
19
+
UI_HOST: *your Amazon AWS instance's url or IP*
20
+
UI_PORT: *port for UI app*
21
+
ports:
22
+
- "REACT_APP_API_PORT specified below:8080"
23
+
24
+
25
+
cvat_ui:
26
+
build:
27
+
args:
28
+
REACT_APP_API_HOST: *your Amazon AWS instance's url or IP*
0 commit comments