Skip to content

Commit

Permalink
feat(rel): add syntactic code intel worker service
Browse files Browse the repository at this point in the history
  • Loading branch information
jdpleiness committed Mar 5, 2025
1 parent 9568cc3 commit febe62b
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions docker-compose/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -388,6 +388,32 @@ services:
- sourcegraph
restart: always

# Description: High level syntax analysis
#
# Disk: none
# Ports exposed to other Sourcegraph services: 3188/TCP
# Ports exposed to the public internet: none
#
syntactic-code-intel-worker:
container_name: syntactic-code-intel-worker
image: 'index.docker.io/sourcegraph/syntactic-code-intel-worker:6.1.1295@sha256:c6e2b097b8f16394e339588e208c43587f1fa6a35cb44e9759622c448ddc1445'
cpus: 2
mem_limit: '4g'
environment:
- 'SRC_FRONTEND_INTERNAL=sourcegraph-frontend-internal:3090'
- 'PRECISE_CODE_INTEL_UPLOAD_BACKEND=blobstore'
- '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"
interval: 5s
timeout: 15s
retries: 3
start_period: 60s
networks:
- sourcegraph
restart: always

# Description: Backend for syntax highlighting operations.
#
# Disk: none
Expand Down

0 comments on commit febe62b

Please sign in to comment.