mirror of
https://github.com/formbricks/formbricks.git
synced 2026-02-14 19:08:55 -06:00
fix: remove default env vars in docker compose (#2018)
This commit is contained in:
committed by
GitHub
parent
967680263b
commit
b51e9ccdb9
@@ -4,12 +4,12 @@ version: "3.3"
|
||||
x-webapp-url: &webapp_url http://localhost:3000
|
||||
|
||||
# PostgreSQL DB for Formbricks to connect to
|
||||
x-database-url: &database_url postgresql://postgres:postgres@postgres:5432/formbricks?schema=public
|
||||
x-database-url: &database_url
|
||||
|
||||
# NextJS Auth
|
||||
# @see: https://next-auth.js.org/configuration/options#nextauth_secret
|
||||
# You can use: `openssl rand -hex 32` to generate one
|
||||
x-nextauth-secret: &nextauth_secret 10ee8bc17d40a457544cf373affbab16
|
||||
x-nextauth-secret: &nextauth_secret
|
||||
|
||||
# Set this to your public-facing URL, e.g., https://example.com
|
||||
# You do not need the NEXTAUTH_URL environment variable in Vercel.
|
||||
@@ -17,7 +17,7 @@ x-nextauth-url: &nextauth_url http://localhost:3000
|
||||
|
||||
# Encryption key
|
||||
# You can use: `openssl rand -hex 32` to generate one
|
||||
x-encryption-key: &encryption_key 1b3d888592454d23b520040950654669
|
||||
x-encryption-key: &encryption_key
|
||||
|
||||
x-mail-from: &mail_from
|
||||
x-smtp-host: &smtp_host
|
||||
@@ -62,7 +62,7 @@ x-sentry-ignore-api-resolution-error: &sentry_ignore_api_resolution_error # Disa
|
||||
x-next-public-sentry-dsn: &next_public_sentry_dsn # Enable Sentry Error Tracking
|
||||
|
||||
|
||||
x-cron-secret: &cron_secret YOUR_CRON_SECRET # Set this to a random string to secure your cron endpoints
|
||||
x-cron-secret: &cron_secret # Set this to a random string to secure your cron endpoints
|
||||
|
||||
services:
|
||||
postgres:
|
||||
|
||||
Reference in New Issue
Block a user