Hi everyone, now I would like to use PostgreSQL fo...
# support
a
Hi everyone, now I would like to use PostgreSQL for the backend, but after setting some variables when the signoz container starts container failed and the logs says that the container still use the sqlite, so is it possible to use PostgreSQL for the backend? if the answer is yes, how can I do this, and what variables should be used? Actually I'm using this
Copy code
signoz:
    <<: *db-depend
    image: signoz/signoz:${VERSION:-v0.87.0}
    container_name: signoz
    ports:
      - "8080:8080"
    volumes:
      - ../common/dashboards:/root/config/dashboards
    environment:
      - SIGNOZ_ALERTMANAGER_PROVIDER=signoz
      - SIGNOZ_TELEMETRYSTORE_PROVIDER=clickhouse
      - SIGNOZ_TELEMETRYSTORE_CLICKHOUSE_DSN=<tcp://signoz:password@clickhouse:9000>
      - SIGNOZ_SQLSTORE_DRIVER=postgres
      - SIGNOZ_SQLSTORE_DATASOURCE=<postgres://u_signoz:TestPass123@localhost:5432/signoz_db?sslmode=require>
      - SIGNOZ_ANALYTICS_ENABLED=true
v
Please be mindful it's still experimental and in the early stages