Skip to content

Commit

Permalink
Update docker-compose app version0.3.68 (#165)
Browse files Browse the repository at this point in the history
  • Loading branch information
ohrebeniuk authored Jul 4, 2024
2 parents 9bfcda4 + 16034c2 commit d8178a0
Showing 1 changed file with 54 additions and 53 deletions.
107 changes: 54 additions & 53 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,87 +2,88 @@ services:
my-extension:
image: ${DESKTOP_PLUGIN_IMAGE}
environment:
- PLUGIN_API_URL=https://${PLUGIN_API_URL:-digma-compound}:5051
- PLUGIN_API_URL=https://${PLUGIN_API_URL:-digma-compound}:5051
nginx:
image: digmaai/jaeger-ui:1.29.1-digma.0.1.4
ports:
- "5180:80"
- 5180:80
restart: unless-stopped
environment:
- JAEGER_QUERY_URL=http://jaeger:16686
- JAEGER_QUERY_URL=http://jaeger:16686
depends_on:
- jaeger
- jaeger
digma-persistence:
image: digmatic/digma-persistence:1.2
expose:
- "5432"
- "6379"
- "8086"
- '5432'
- '6379'
- '8086'
volumes:
- postgres_data_v1:/etc/lib/postgresql/data-pg
- redis_data_v1:/var/lib/redis
- influxdb_data_v1:/root/.influxdbv2/engine/data
- influxdb_config_v1:/root/.influxdbv2
- postgres_data_v1:/etc/lib/postgresql/data-pg
- redis_data_v1:/var/lib/redis
- influxdb_data_v1:/root/.influxdbv2/engine/data
- influxdb_config_v1:/root/.influxdbv2
environment:
- DOCKER_INFLUXDB_INIT_MODE=setup
- DOCKER_INFLUXDB_INIT_USERNAME=${INFLUXDB_USERNAME:-admin}
- DOCKER_INFLUXDB_INIT_PASSWORD=${INFLUXDB_PASSWORD:-12345678}
- DOCKER_INFLUXDB_INIT_ORG=${INFLUXDB_ORG:-digma}
- DOCKER_INFLUXDB_INIT_BUCKET=${INFLUXDB_BUCKET:-errors}
- DOCKER_INFLUXDB_INIT_RETENTION=${INFLUXDB_BUCKET_RETENTION:-16w}
- DOCKER_INFLUXDB_INIT_ADMIN_TOKEN=${INFLUXDB_ADMIN_TOKEN:-dc61908e-05bc-411a-9fe2-e3356b8dc7c0}
- INFLUXD_QUERY_CONCURRENCY=15
- INFLUXD_QUERY_QUEUE_SIZE=200
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_NAME=postgres
- DOCKER_INFLUXDB_INIT_MODE=setup
- DOCKER_INFLUXDB_INIT_USERNAME=${INFLUXDB_USERNAME:-admin}
- DOCKER_INFLUXDB_INIT_PASSWORD=${INFLUXDB_PASSWORD:-12345678}
- DOCKER_INFLUXDB_INIT_ORG=${INFLUXDB_ORG:-digma}
- DOCKER_INFLUXDB_INIT_BUCKET=${INFLUXDB_BUCKET:-errors}
- DOCKER_INFLUXDB_INIT_RETENTION=${INFLUXDB_BUCKET_RETENTION:-16w}
- DOCKER_INFLUXDB_INIT_ADMIN_TOKEN=${INFLUXDB_ADMIN_TOKEN:-dc61908e-05bc-411a-9fe2-e3356b8dc7c0}
- INFLUXD_QUERY_CONCURRENCY=15
- INFLUXD_QUERY_QUEUE_SIZE=200
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_NAME=postgres
restart: unless-stopped
jaeger:
image: jaegertracing/all-in-one:1.45.0
expose:
- "5317:4317"
- 5317:4317
ports:
- "17686:16686"
- 17686:16686
command: |
--query.additional-headers "Access-Control-Allow-Origin: *"
volumes:
- "jaeger_data:/badger"
- jaeger_data:/badger
environment:
- SPAN_STORAGE_TYPE=badger
- COLLECTOR_OTLP_ENABLED=true
- BADGER_EPHEMERAL=false
- BADGER_DIRECTORY_VALUE=/badger/data
- BADGER_DIRECTORY_KEY=/badger/key
- BADGER_SPAN_STORE_TTL=336h0m0s
- SPAN_STORAGE_TYPE=badger
- COLLECTOR_OTLP_ENABLED=true
- BADGER_EPHEMERAL=false
- BADGER_DIRECTORY_VALUE=/badger/data
- BADGER_DIRECTORY_KEY=/badger/key
- BADGER_SPAN_STORE_TTL=336h0m0s
restart: unless-stopped
digma-ds:
image: digmatic/ds:0.0.22
restart: unless-stopped
digma-compound:
image: digmatic/digma-compound:0.3.66
image: digmatic/digma-compound:0.3.68
ports:
- "5049:5049"
- "5050:5050"
- "5051:5051"
- 5049:5049
- 5050:5050
- 5051:5051
environment:
- BACKEND_DEPLOYMENT_TYPE=DockerExtension
- CacheSettings__RedisConnection=${REDIS_CONNECTION:-digma-persistence}
- ConnectionStrings__Postgres=Server=${POSTGRES_SERVER:-digma-persistence};Port=${POSTGRES_SERVER_PORT:-5432};Database=digma_analytics;User Id=${POSTGRES_USER:-postgres};Password=${POSTGRES_PWD:-postgres};
- influx2__Url=http://${INFLUXDB_URL:-digma-persistence}:8086
- Ds__Url=http://${DS_URL:-digma-ds}:5054
- Ds__TimeoutInSeconds=0.2
- OtlpExporterUrl=
- Jaeger__OtlpUrl=http://jaeger:4317
- ThresholdOptions__RecentActivityUpdateThresholdSeconds=5
- ThresholdOptions__UpsertEndpointThresholdSeconds=5
- ThresholdOptions__UpsertSpanFlowMetadataThresholdSeconds=5
- ThresholdOptions__UpsertSpansThresholdSeconds=5
- GlobalExceptionSettings__ExposeInternalDetails=true
- Kafka__PipelineWorkerCG__Workers=2
- PipelineExecution__NodeExecutionParallelism=1
- ApplicationVersion=0.3.66
- BACKEND_DEPLOYMENT_TYPE=DockerExtension
- CacheSettings__RedisConnection=${REDIS_CONNECTION:-digma-persistence}
- ConnectionStrings__Postgres=Server=${POSTGRES_SERVER:-digma-persistence};Port=${POSTGRES_SERVER_PORT:-5432};Database=digma_analytics;User
Id=${POSTGRES_USER:-postgres};Password=${POSTGRES_PWD:-postgres};
- influx2__Url=http://${INFLUXDB_URL:-digma-persistence}:8086
- Ds__Url=http://${DS_URL:-digma-ds}:5054
- Ds__TimeoutInSeconds=0.2
- OtlpExporterUrl=
- Jaeger__OtlpUrl=http://jaeger:4317
- ThresholdOptions__RecentActivityUpdateThresholdSeconds=5
- ThresholdOptions__UpsertEndpointThresholdSeconds=5
- ThresholdOptions__UpsertSpanFlowMetadataThresholdSeconds=5
- ThresholdOptions__UpsertSpansThresholdSeconds=5
- GlobalExceptionSettings__ExposeInternalDetails=true
- Kafka__PipelineWorkerCG__Workers=2
- PipelineExecution__NodeExecutionParallelism=1
- ApplicationVersion=0.3.68
depends_on:
- digma-persistence
- digma-persistence
restart: unless-stopped

volumes:
Expand Down

0 comments on commit d8178a0

Please sign in to comment.