This commit is contained in:
Sönke Domröse
2025-04-30 16:47:09 +02:00
parent 5d9a01fcf1
commit 212efd56ae
2 changed files with 14 additions and 14 deletions

View File

@@ -3,14 +3,14 @@ MAIN_PORT=10000
# This section contains all secrets pertaining to the system # This section contains all secrets pertaining to the system
# These should be updated # These should be updated
API_ENCRYPTION_KEY="r*6V&XX#Nc@KhkB7" API_ENCRYPTION_KEY=testsecret
JWT_SECRET="4hXZmFIvjmb$!jIp" JWT_SECRET=testsecret
MINIO_ACCESS_KEY="*PG2M5^6WByh!uT1" MINIO_ACCESS_KEY=budibase
MINIO_SECRET_KEY="I238Lt@TqB#eTtG%" MINIO_SECRET_KEY=budibase
COUCH_DB_PASSWORD="OgDcjjIA^Q6i0*VN" COUCH_DB_PASSWORD=budibase
COUCH_DB_USER=budibase COUCH_DB_USER=budibase
REDIS_PASSWORD="wfU2ufV*4#pxSyr&" REDIS_PASSWORD=budibase
INTERNAL_API_KEY="pWCxHj8*A6bfEzTB" INTERNAL_API_KEY=budibase
# This section contains variables that do not need to be altered under normal circumstances # This section contains variables that do not need to be altered under normal circumstances
APP_PORT=4002 APP_PORT=4002
@@ -25,11 +25,7 @@ SQL_MAX_ROWS=
# An admin user can be automatically created initially if these are set # An admin user can be automatically created initially if these are set
BB_ADMIN_USER_EMAIL= BB_ADMIN_USER_EMAIL=
BB_ADMIN_USER_PASSWORD= BB_ADMIN_USER_PASSWORD=
SMTP_USER=mail@domroese.eu
SMTP_PASSWORD=aiVLNjATdm3CyLSCfjNhz4RPqpkvch
SMTP_HOST=pro1.mail.ovh.net
SMTP_PORT=587
SMTP_FROM_ADDRESS
# A path that is watched for plugin bundles. Any bundles found are imported automatically/ # A path that is watched for plugin bundles. Any bundles found are imported automatically/
PLUGINS_DIR= PLUGINS_DIR=
ROLLING_LOG_MAX_SIZE= ROLLING_LOG_MAX_SIZE=

View File

@@ -1,3 +1,7 @@
version: "3"
# optional ports are specified throughout for more advanced use cases.
services: services:
app-service: app-service:
restart: unless-stopped restart: unless-stopped
@@ -26,8 +30,8 @@ services:
depends_on: depends_on:
- worker-service - worker-service
- redis-service - redis-service
volumes: # volumes:
- /home/soenke/docker-data/budibase/plugins:/plugins # - /some/path/to/plugins:/plugins
worker-service: worker-service:
restart: unless-stopped restart: unless-stopped