x-service-base: &service-base user: ${UID:?UID missing}:${GID:?GID missing} tty: true x-volume-app: &volume-app ./:/app/ x-env-base: &env-base TZ: ${TZ:?TZ missing} services: server: <<: *service-base image: oven/bun:1.3.14@sha256:e10577f0db68676a7024391c6e5cb4b879ebd17188ab750cf10024a6d700e5c4 volumes: - *volume-app working_dir: /app/packages/server env_file: .env environment: <<: *env-base entrypoint: ["bun", "dev:bun"] cli: <<: *service-base image: oven/bun:1.3.14@sha256:e10577f0db68676a7024391c6e5cb4b879ebd17188ab750cf10024a6d700e5c4 volumes: - *volume-app working_dir: /app env_file: .env environment: <<: *env-base NODE_ENV: development entrypoint: ["/bin/bash"] stop_signal: SIGKILL webapp: <<: *service-base image: node:22.22.2@sha256:62e4daa6819762bbd3072af77cc282ab72c631c4aed30dd7980192babaf385b3 ports: - ${PORT:?PORT missing}:80 volumes: - *volume-app working_dir: /app/packages/webapp environment: <<: *env-base entrypoint: ["npm", "run", "dev"] stop_signal: SIGKILL tempo: <<: *service-base image: grafana/tempo:latest@sha256:fa9cffa1075dd82f01d6bd42c7d65d977b2ad031a0637388d8cbbe2d31e01278 command: [-config.file=/etc/tempo.yaml] volumes: - ./telemetry/tempo.yaml:/etc/tempo.yaml - ./tempo_data/:/data/ stop_signal: SIGKILL prometheus: image: prom/prometheus:v3.11.3@sha256:e4254400b85610324913f0dc4acf92603d9984e7519414c5a12811aa6146acc3 command: - --config.file=/etc/prometheus.yaml - --web.enable-remote-write-receiver - --enable-feature=exemplar-storage volumes: - ./telemetry/prometheus.yaml:/etc/prometheus.yaml grafana: image: grafana/grafana:latest@sha256:135f4b96b7a54f904415dc51e71a1cd945b1f8400772b2feac2df5112b43f4ed volumes: - ./telemetry/grafana-datasources.yaml:/etc/grafana/provisioning/datasources/datasources.yaml environment: GF_AUTH_ANONYMOUS_ENABLED: true GF_AUTH_ANONYMOUS_ORG_ROLE: Admin GF_AUTH_DISABLE_LOGIN_FORM: true GF_FEATURE_TOGGLES_ENABLE: traceqlEditor