mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
* feat: update Dockerfiles and entrypoint for PostgreSQL and Temporal integration * fix: update Docker image tags for ee-latest versioning * fix: remove default Dockerfile path and update tag generation logic * fix: remove unnecessary newline in manual Docker build workflow * fix: remove duplicate TOOLJET_EDITION environment variable declaration * fix: update PostgreSQL source list for compatibility and enhance entrypoint script for improved logging and error handling * update PostgreSQL source list to use bookworm for compatibility
70 lines
No EOL
1.4 KiB
YAML
70 lines
No EOL
1.4 KiB
YAML
log:
|
|
stdout: true
|
|
level: info
|
|
|
|
persistence:
|
|
defaultStore: postgres-default
|
|
visibilityStore: postgres-visibility
|
|
numHistoryShards: 4
|
|
dataStores:
|
|
postgres-default:
|
|
sql:
|
|
pluginName: "postgres12"
|
|
databaseName: "temporal"
|
|
connectAddr: "localhost:5432"
|
|
user: "tooljet"
|
|
password: "postgres"
|
|
postgres-visibility:
|
|
sql:
|
|
pluginName: "postgres12"
|
|
databaseName: "temporal_visibility"
|
|
connectAddr: "localhost:5432"
|
|
user: "tooljet"
|
|
password: "postgres"
|
|
|
|
global:
|
|
membership:
|
|
maxJoinDuration: 30s
|
|
broadcastAddress: "127.0.0.1"
|
|
pprof:
|
|
port: 7936
|
|
|
|
services:
|
|
frontend:
|
|
rpc:
|
|
grpcPort: 7233
|
|
membershipPort: 6933
|
|
bindOnLocalHost: true
|
|
httpPort: 7243
|
|
|
|
matching:
|
|
rpc:
|
|
grpcPort: 7235
|
|
membershipPort: 6935
|
|
bindOnLocalHost: true
|
|
|
|
history:
|
|
rpc:
|
|
grpcPort: 7234
|
|
membershipPort: 6934
|
|
bindOnLocalHost: true
|
|
|
|
worker:
|
|
rpc:
|
|
membershipPort: 6939
|
|
|
|
clusterMetadata:
|
|
enableGlobalNamespace: false
|
|
failoverVersionIncrement: 10
|
|
masterClusterName: "active"
|
|
currentClusterName: "active"
|
|
clusterInformation:
|
|
active:
|
|
enabled: true
|
|
initialFailoverVersion: 1
|
|
rpcName: "frontend"
|
|
rpcAddress: "localhost:7233"
|
|
httpAddress: "localhost:7243"
|
|
|
|
dcRedirectionPolicy:
|
|
policy: "noop" |