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: apps/matching-service/README.md
+10-2Lines changed: 10 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -121,6 +121,14 @@ Make sure to open the HTML file in a web browser while the WebSocket server is r
121
121
122
122
You can open one instance of the HTML file in multiple tabs to simulate multiple clients connecting to the server. (In the future: ensure that only one connection is allowed per user)
123
123
124
-
## Docker Support
124
+
## Running the Application via Docker
125
125
126
-
TODO: Add section for Docker setup and usage instructions.
126
+
To run the application via Docker, run the following command:
127
+
128
+
```bash
129
+
docker build -t matching-service .
130
+
```
131
+
132
+
```bash
133
+
docker run -d -p 8081:8081 -p 6379:6379 --name matching-service-container matching-service
0 commit comments