diff options
| author | MatthieuCoder <matthieu@matthieu-dev.xyz> | 2023-01-15 17:03:29 +0400 | 
|---|---|---|
| committer | MatthieuCoder <matthieu@matthieu-dev.xyz> | 2023-01-15 17:03:29 +0400 | 
| commit | cbcaa3c01ec4d9ed95dc5af8232de1d10191bc44 (patch) | |
| tree | 02cd56bb6eba762024c33f2df3cbec4f7a1a27e1 /docker-compose.yaml | |
| parent | c06cf52e887cc560f1fd4fa72713b239fe0102a6 (diff) | |
add metrics and jemalloc
Diffstat (limited to 'docker-compose.yaml')
| -rw-r--r-- | docker-compose.yaml | 12 | 
1 files changed, 3 insertions, 9 deletions
diff --git a/docker-compose.yaml b/docker-compose.yaml index 7126433..ac1fb12 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -1,7 +1,7 @@  version: "3.3"  services:    nats: -    image: bitnami/nats +    image: nats      restart: always      ports:        - 4222:4222 @@ -11,7 +11,8 @@ services:      image: redis      ports:        - 6379:6379 - +  mock: +    image: nginx    cache:      image: ghcr.io/discordnova/nova/cache      restart: always @@ -23,7 +24,6 @@ services:        - ./config/default.yml:/config/default.yml      environment:        - RUST_LOG=debug -      - OTEL_EXPORTER_OTLP_ENDPOINT=http://otelcol:4317      depends_on:        - nats        - redis @@ -40,7 +40,6 @@ services:        - ./config/default.yml:/config/default.yml      environment:        - RUST_LOG=debug -      - OTEL_EXPORTER_OTLP_ENDPOINT=http://otelcol:4317      depends_on:        - nats        - otelcol @@ -56,7 +55,6 @@ services:        - ./config/default.yml:/config/default.yml      environment:        - RUST_LOG=debug -      - OTEL_EXPORTER_OTLP_ENDPOINT=http://otelcol:4317      depends_on:        - ratelimit        - otelcol @@ -76,7 +74,6 @@ services:        - ./config/default.yml:/config/default.yml      environment:        - RUST_LOG=debug -      - OTEL_EXPORTER_OTLP_ENDPOINT=http://otelcol:4317      depends_on:        - nats        - otelcol @@ -94,7 +91,6 @@ services:        - ./config/default.yml:/config/default.yml      environment:        - RUST_LOG=debug -      - OTEL_EXPORTER_OTLP_ENDPOINT=http://otelcol:4317      depends_on:        - nats        - redis @@ -108,8 +104,6 @@ services:      image: jaegertracing/all-in-one      container_name: jaeger      command: -      - "--memory.max-debugs" -      - "10000"        - "--query.base-path"        - "/jaeger/ui"        - "--prometheus.server-url"  | 
