Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions docker-compose/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ services:

# Description: Handles conversion of uploaded precise code intelligence bundles.
#
# Ports exposed to other Sourcegraph services: 3188/TCP
# Ports exposed to other Sourcegraph services: 6060/TCP
# Ports exposed to the public internet: none
#
precise-code-intel-worker:
Expand All @@ -329,7 +329,7 @@ services:
- 'PRECISE_CODE_INTEL_UPLOAD_AWS_ENDPOINT=http://blobstore:9000'
- 'OTEL_EXPORTER_OTLP_ENDPOINT=http://otel-collector:4317'
healthcheck:
test: "wget -q 'http://127.0.0.1:3188/healthz' -O /dev/null || exit 1"
test: "wget -q 'http://127.0.0.1:6060/ready' -O /dev/null || exit 1"
interval: 5s
timeout: 5s
retries: 3
Expand Down Expand Up @@ -366,7 +366,7 @@ services:
# Description: High level syntax analysis
#
# Disk: none
# Ports exposed to other Sourcegraph services: 3188/TCP
# Ports exposed to other Sourcegraph services: 6060/TCP
# Ports exposed to the public internet: none
#
syntactic-code-intel-worker:
Expand All @@ -379,9 +379,8 @@ services:
- 'PRECISE_CODE_INTEL_UPLOAD_BACKEND=blobstore'
- 'PRECISE_CODE_INTEL_UPLOAD_AWS_ENDPOINT=http://blobstore:9000'
- 'OTEL_EXPORTER_OTLP_ENDPOINT=http://otel-collector:4317'
- 'SYNTACTIC_CODE_INTEL_WORKER_ADDR=:3288'
healthcheck:
test: "wget -q 'http://127.0.0.1:3288/healthz' -O /dev/null || exit 1"
test: "wget -q 'http://127.0.0.1:6060/ready' -O /dev/null || exit 1"
interval: 5s
timeout: 15s
retries: 3
Expand Down
Loading