File tree 3 files changed +20
-5
lines changed
3 files changed +20
-5
lines changed Original file line number Diff line number Diff line change @@ -18,3 +18,8 @@ CODECOV_SUPER_TOKEN=...
18
18
19
19
RPC_SHARED_SECRET = "seers-also-very-long-value-haha" # Match with SEER_RPC_SHARED_SECRET=[""] in sentry.conf.py
20
20
SBX_PROJECT = eng-dev-sbx--XXX # If using push-image and https://github.com/getsentry/terraform-sandboxes.private
21
+
22
+ RABBITMQ_PORT = 5672
23
+ RABBITMQ_CONFIG_PORT = 15672
24
+ DB_PORT = 5433
25
+ APP_PORT = 9091
Original file line number Diff line number Diff line change @@ -92,6 +92,17 @@ docker compose down --volumes
92
92
make update && make dev
93
93
```
94
94
95
+ ## Running Multiple Instances of Seer
96
+
97
+ To run multiple instances of Seer, you should set unique port values for each instance in the ` .env ` file.
98
+
99
+ ```
100
+ RABBITMQ_PORT=...
101
+ RABBITMQ_CONFIG_PORT=...
102
+ DB_PORT=...
103
+ APP_PORT=...
104
+ ```
105
+
95
106
## Langfuse Integration
96
107
97
108
To enable Langfuse tracing, set these environment variables:
Original file line number Diff line number Diff line change 1
1
services :
2
2
rabbitmq :
3
3
image : rabbitmq:3.8-alpine
4
- container_name : " rabbitmq_lightweight"
5
4
ports :
6
- - " 5672:5672"
7
- - " 15672:15672"
5
+ - " ${RABBITMQ_PORT:- 5672} :5672"
6
+ - " ${RABBITMQ_CONFIG_PORT:- 15672} :15672"
8
7
db :
9
8
image : pgvector/pgvector:pg14
10
9
restart : always
@@ -15,7 +14,7 @@ services:
15
14
volumes :
16
15
- pgdata:/var/lib/postgresql/data
17
16
ports :
18
- - " 5433:5432"
17
+ - " ${DB_PORT:- 5433} :5432"
19
18
test-db :
20
19
image : pgvector/pgvector:pg14
21
20
restart : always
@@ -65,7 +64,7 @@ services:
65
64
- USE_EU_REGION=0
66
65
- IGNORE_API_AUTH=1
67
66
ports :
68
- - " 9091:9091" # Local dev sentry app looks for port 9091 for the seer service.
67
+ - " ${APP_PORT:- 9091} :9091" # Local dev sentry app looks for port 9091 for the seer service.
69
68
volumes :
70
69
pgdata :
71
70
pgdata_test :
You can’t perform that action at this time.
0 commit comments