Skip to content

Commit

Permalink
Setup(Docker): change ports
Browse files Browse the repository at this point in the history
  • Loading branch information
ktutak1337 committed Jun 26, 2024
1 parent a42f2fa commit 27fee6c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docker/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ MONGO_INITDB_ROOT_PASSWORD=<your_mongodb_password>
# Endpoint URL for Qdrant vector search engine.
# It is not recommended to change the alias 'stellar-chat-qdrant' as it is used for internal API communication.
# Only adjust the port number if needed.
QDRANT_ENDPOINT=http://stellar-chat-qdrant:6334
QDRANT_ENDPOINT=http://stellar-chat-qdrant:6333

# URL for Seq logging server
# It is not recommended to change the alias 'stellar-chat-seq' as it is used for internal API communication.
# Only adjust the port number if needed.
SEQ_URL=http://stellar-chat-seq:5342
SEQ_URL=http://stellar-chat-seq:5341

# API key for authenticating with Seq
SEQ_API_KEY=<your_seq_api_key>
Expand Down
6 changes: 3 additions & 3 deletions docker/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ services:
- MONGO_INITDB_ROOT_USERNAME=${MONGO_INITDB_ROOT_USERNAME}
- MONGO_INITDB_ROOT_PASSWORD=${MONGO_INITDB_ROOT_PASSWORD}
ports:
- 27018:27017
- 27017:27017
networks:
- stellarchat-network
volumes:
Expand All @@ -62,7 +62,7 @@ services:
networks:
- stellarchat-network
ports:
- 5342:80
- 5341:80
volumes:
- seq_data:/data

Expand All @@ -74,7 +74,7 @@ services:
networks:
- stellarchat-network
ports:
- 6334:6333
- 6333:6333
volumes:
- qdrant_data:/data

Expand Down

0 comments on commit 27fee6c

Please sign in to comment.