fix: π Fix duplicate ports in docker-compose (#472)
Browse files### What problem does this PR solve?
Fix duplicate ports in docker-compose

### Type of change
- [x] Bug Fix (non-breaking change which fixes an issue)
docker/docker-compose.yml
CHANGED
|
@@ -12,7 +12,6 @@ services:
|
|
| 12 |
image: infiniflow/ragflow:${RAGFLOW_VERSION}
|
| 13 |
container_name: ragflow-server
|
| 14 |
ports:
|
| 15 |
-
- ${SVR_HTTP_PORT}:9380
|
| 16 |
- ${SVR_HTTP_PORT}:9380
|
| 17 |
- 80:80
|
| 18 |
- 443:443
|
|
|
|
| 12 |
image: infiniflow/ragflow:${RAGFLOW_VERSION}
|
| 13 |
container_name: ragflow-server
|
| 14 |
ports:
|
|
|
|
| 15 |
- ${SVR_HTTP_PORT}:9380
|
| 16 |
- 80:80
|
| 17 |
- 443:443
|