Skip to content

Commit 1871dbc

Browse files
Edit readme.md for docker-compose
1 parent 94669dc commit 1871dbc

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

apps/README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,21 @@ In the `./apps` directory:
1616
```plaintext
1717
.
1818
├── docker-compose.yml # Docker Compose configuration
19+
├── README.md # Project documentation (for docker compose)
1920
├── .env # Global environment variables (optional)
2021
├── frontend
2122
│ ├── Dockerfile # Dockerfile for frontend
2223
│ └── ... (other frontend files)
24+
├── matching-service
25+
│ ├── Dockerfile # Dockerfile for matching-service
26+
│ └── ... (other matching-service files)
2327
├── question-service
2428
│ ├── Dockerfile # Dockerfile for question-service
2529
│ └── ... (other question-service files)
2630
├── user-service
2731
│ ├── Dockerfile # Dockerfile for user-service
2832
│ └── ... (other user-service files)
29-
└── README.md # Project documentation (for docker compose)
33+
3034
```
3135

3236
## Docker Compose Setup
@@ -53,6 +57,8 @@ Once running, you can access:
5357
- The **frontend** at http://localhost:3000
5458
- The **user service** at http://localhost:3001
5559
- The **question service** at http://localhost:8080
60+
- The **matching service** at http://localhost:8081
61+
- The **redis service** at http://localhost:6379
5662

5763
3. Stopping Services
5864

0 commit comments

Comments
 (0)