fixes
This commit is contained in:
@@ -6,7 +6,6 @@
|
|||||||
|
|
||||||
services:
|
services:
|
||||||
app-service:
|
app-service:
|
||||||
restart: unless-stopped
|
|
||||||
image: budibase.docker.scarf.sh/budibase/apps
|
image: budibase.docker.scarf.sh/budibase/apps
|
||||||
environment:
|
environment:
|
||||||
- SELF_HOSTED=1
|
- SELF_HOSTED=1
|
||||||
@@ -21,23 +20,22 @@ services:
|
|||||||
- API_ENCRYPTION_KEY=$SERVICE_BASE64_64_BUDIBASE
|
- API_ENCRYPTION_KEY=$SERVICE_BASE64_64_BUDIBASE
|
||||||
- JWT_SECRET=$SERVICE_BASE64_64_BUDIBASE
|
- JWT_SECRET=$SERVICE_BASE64_64_BUDIBASE
|
||||||
- LOG_LEVEL=info
|
- LOG_LEVEL=info
|
||||||
- ENABLE_ANALYTICS=true
|
- ENABLE_ANALYTICS=${ENABLE_ANALYTICS:-true}
|
||||||
- REDIS_URL=redis-service:6379
|
- REDIS_URL=redis-service:6379
|
||||||
- REDIS_PASSWORD=$SERVICE_PASSWORD_BUDIBASE_REDIS
|
- REDIS_PASSWORD=$SERVICE_PASSWORD_BUDIBASE_REDIS
|
||||||
- BB_ADMIN_USER_EMAIL=
|
- BB_ADMIN_USER_EMAIL=${BB_ADMIN_USER_EMAIL}
|
||||||
- BB_ADMIN_USER_PASSWORD=
|
- BB_ADMIN_USER_PASSWORD=${BB_ADMIN_USER_PASSWORD}
|
||||||
depends_on:
|
depends_on:
|
||||||
- worker-service
|
- worker-service
|
||||||
- redis-service
|
- redis-service
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "curl", "-f", "http://app-service:4002"]
|
test: ["CMD", "curl", "-f", "http://app-service:4002"]
|
||||||
interval: 15s
|
interval: 15s
|
||||||
timeout: 15s
|
timeout: 15s
|
||||||
retries: 5
|
retries: 5
|
||||||
start_period: 10s
|
start_period: 10s
|
||||||
|
|
||||||
worker-service:
|
worker-service:
|
||||||
restart: unless-stopped
|
|
||||||
image: budibase.docker.scarf.sh/budibase/worker
|
image: budibase.docker.scarf.sh/budibase/worker
|
||||||
environment:
|
environment:
|
||||||
- SELF_HOSTED=1
|
- SELF_HOSTED=1
|
||||||
@@ -59,14 +57,13 @@ services:
|
|||||||
- redis-service
|
- redis-service
|
||||||
- minio-service
|
- minio-service
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "curl", "-f", "http://worker-service:4003"]
|
test: ["CMD", "curl", "-f", "http://worker-service:4003"]
|
||||||
interval: 15s
|
interval: 15s
|
||||||
timeout: 15s
|
timeout: 15s
|
||||||
retries: 5
|
retries: 5
|
||||||
start_period: 10s
|
start_period: 10s
|
||||||
|
|
||||||
minio-service:
|
minio-service:
|
||||||
restart: unless-stopped
|
|
||||||
image: minio/minio
|
image: minio/minio
|
||||||
volumes:
|
volumes:
|
||||||
- minio_data:/data
|
- minio_data:/data
|
||||||
@@ -82,7 +79,6 @@ services:
|
|||||||
retries: 3
|
retries: 3
|
||||||
|
|
||||||
proxy-service:
|
proxy-service:
|
||||||
restart: unless-stopped
|
|
||||||
image: budibase/proxy
|
image: budibase/proxy
|
||||||
environment:
|
environment:
|
||||||
- SERVICE_FQDN_BUDIBASE_10000
|
- SERVICE_FQDN_BUDIBASE_10000
|
||||||
@@ -107,7 +103,6 @@ services:
|
|||||||
start_period: 10s
|
start_period: 10s
|
||||||
|
|
||||||
couchdb-service:
|
couchdb-service:
|
||||||
restart: unless-stopped
|
|
||||||
image: budibase/couchdb
|
image: budibase/couchdb
|
||||||
environment:
|
environment:
|
||||||
- COUCHDB_PASSWORD=$SERVICE_PASSWORD_BUDIBASE_COUCHDB
|
- COUCHDB_PASSWORD=$SERVICE_PASSWORD_BUDIBASE_COUCHDB
|
||||||
@@ -123,13 +118,13 @@ services:
|
|||||||
- couchdb3_data:/opt/couchdb/data
|
- couchdb3_data:/opt/couchdb/data
|
||||||
|
|
||||||
redis-service:
|
redis-service:
|
||||||
restart: unless-stopped
|
|
||||||
image: redis
|
image: redis
|
||||||
command: redis-server --requirepass "$SERVICE_PASSWORD_BUDIBASE_REDIS"
|
command: redis-server --requirepass "$SERVICE_PASSWORD_BUDIBASE_REDIS"
|
||||||
volumes:
|
volumes:
|
||||||
- redis_data:/data
|
- redis_data:/data
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "redis-cli", "-a", "$SERVICE_PASSWORD_BUDIBASE_REDIS", "ping"]
|
test:
|
||||||
|
["CMD", "redis-cli", "-a", "$SERVICE_PASSWORD_BUDIBASE_REDIS", "ping"]
|
||||||
interval: 15s
|
interval: 15s
|
||||||
timeout: 15s
|
timeout: 15s
|
||||||
retries: 5
|
retries: 5
|
||||||
@@ -148,16 +143,8 @@ services:
|
|||||||
labels:
|
labels:
|
||||||
- "com.centurylinklabs.watchtower.enable=false"
|
- "com.centurylinklabs.watchtower.enable=false"
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "curl", "-f", "http://watchtower-service:8080"]
|
test: ["CMD", "curl", "-f", "http://watchtower-service:8080"]
|
||||||
interval: 15s
|
interval: 15s
|
||||||
timeout: 15s
|
timeout: 15s
|
||||||
retries: 5
|
retries: 5
|
||||||
start_period: 10s
|
start_period: 10s
|
||||||
|
|
||||||
volumes:
|
|
||||||
couchdb3_data:
|
|
||||||
driver: local
|
|
||||||
minio_data:
|
|
||||||
driver: local
|
|
||||||
redis_data:
|
|
||||||
driver: local
|
|
||||||
|
@@ -25,8 +25,6 @@ services:
|
|||||||
|
|
||||||
windmill_server:
|
windmill_server:
|
||||||
image: ghcr.io/windmill-labs/windmill:main
|
image: ghcr.io/windmill-labs/windmill:main
|
||||||
pull_policy: always
|
|
||||||
restart: unless-stopped
|
|
||||||
environment:
|
environment:
|
||||||
- DATABASE_URL=postgres://postgres:$SERVICE_PASSWORD_WINDMILL_POSTGRES@db/windmill
|
- DATABASE_URL=postgres://postgres:$SERVICE_PASSWORD_WINDMILL_POSTGRES@db/windmill
|
||||||
- MODE=server
|
- MODE=server
|
||||||
@@ -39,8 +37,6 @@ services:
|
|||||||
|
|
||||||
windmill_worker_1:
|
windmill_worker_1:
|
||||||
image: ghcr.io/windmill-labs/windmill:main
|
image: ghcr.io/windmill-labs/windmill:main
|
||||||
pull_policy: always
|
|
||||||
restart: unless-stopped
|
|
||||||
environment:
|
environment:
|
||||||
- DATABASE_URL=postgres://postgres:$SERVICE_PASSWORD_WINDMILL_POSTGRES@db/windmill
|
- DATABASE_URL=postgres://postgres:$SERVICE_PASSWORD_WINDMILL_POSTGRES@db/windmill
|
||||||
- MODE=worker
|
- MODE=worker
|
||||||
@@ -55,8 +51,6 @@ services:
|
|||||||
|
|
||||||
windmill_worker_2:
|
windmill_worker_2:
|
||||||
image: ghcr.io/windmill-labs/windmill:main
|
image: ghcr.io/windmill-labs/windmill:main
|
||||||
pull_policy: always
|
|
||||||
restart: unless-stopped
|
|
||||||
environment:
|
environment:
|
||||||
- DATABASE_URL=postgres://postgres:$SERVICE_PASSWORD_WINDMILL_POSTGRES@db/windmill
|
- DATABASE_URL=postgres://postgres:$SERVICE_PASSWORD_WINDMILL_POSTGRES@db/windmill
|
||||||
- MODE=worker
|
- MODE=worker
|
||||||
@@ -71,8 +65,6 @@ services:
|
|||||||
|
|
||||||
windmill_worker_3:
|
windmill_worker_3:
|
||||||
image: ghcr.io/windmill-labs/windmill:main
|
image: ghcr.io/windmill-labs/windmill:main
|
||||||
pull_policy: always
|
|
||||||
restart: unless-stopped
|
|
||||||
environment:
|
environment:
|
||||||
- DATABASE_URL=postgres://postgres:$SERVICE_PASSWORD_WINDMILL_POSTGRES@db/windmill
|
- DATABASE_URL=postgres://postgres:$SERVICE_PASSWORD_WINDMILL_POSTGRES@db/windmill
|
||||||
- MODE=worker
|
- MODE=worker
|
||||||
@@ -87,8 +79,6 @@ services:
|
|||||||
|
|
||||||
windmill_worker_native:
|
windmill_worker_native:
|
||||||
image: ghcr.io/windmill-labs/windmill:main
|
image: ghcr.io/windmill-labs/windmill:main
|
||||||
pull_policy: always
|
|
||||||
restart: unless-stopped
|
|
||||||
environment:
|
environment:
|
||||||
- DATABASE_URL=postgres://postgres:$SERVICE_PASSWORD_WINDMILL_POSTGRES@db/windmill
|
- DATABASE_URL=postgres://postgres:$SERVICE_PASSWORD_WINDMILL_POSTGRES@db/windmill
|
||||||
- MODE=worker
|
- MODE=worker
|
||||||
@@ -103,13 +93,5 @@ services:
|
|||||||
|
|
||||||
lsp:
|
lsp:
|
||||||
image: ghcr.io/windmill-labs/windmill-lsp:latest
|
image: ghcr.io/windmill-labs/windmill-lsp:latest
|
||||||
pull_policy: always
|
|
||||||
restart: unless-stopped
|
|
||||||
volumes:
|
volumes:
|
||||||
- lsp_cache:/root/.cache
|
- lsp_cache:/root/.cache
|
||||||
|
|
||||||
volumes:
|
|
||||||
db_data:
|
|
||||||
worker_dependency_cache:
|
|
||||||
worker_logs:
|
|
||||||
lsp_cache:
|
|
Reference in New Issue
Block a user