feat: add shannon

This commit is contained in:
Sun-ZhenXing
2026-04-01 17:33:42 +08:00
parent b55fa9819b
commit 6ae63c5d86
16 changed files with 820 additions and 19 deletions
-2
View File
@@ -37,7 +37,6 @@ services:
budibase:
<<: *defaults
image: ${GLOBAL_REGISTRY:-}budibase/budibase:${BUDIBASE_VERSION:-3.23.0}
container_name: budibase
ports:
- '${BUDIBASE_PORT_OVERRIDE:-10000}:80'
environment:
@@ -98,7 +97,6 @@ services:
redis:
<<: *defaults
image: ${GLOBAL_REGISTRY:-}redis:${REDIS_VERSION:-7-alpine}
container_name: budibase-redis
command: redis-server --appendonly yes --maxmemory 256mb --maxmemory-policy allkeys-lru
volumes:
- redis_data:/data
-3
View File
@@ -38,7 +38,6 @@ services:
build:
context: https://github.com/conductor-oss/conductor.git#main:docker/server
dockerfile: Dockerfile
container_name: conductor-server
ports:
- '${CONDUCTOR_SERVER_PORT_OVERRIDE:-8080}:8080'
- '${CONDUCTOR_UI_PORT_OVERRIDE:-5000}:5000'
@@ -90,7 +89,6 @@ services:
postgres:
<<: *defaults
image: ${GLOBAL_REGISTRY:-}postgres:${POSTGRES_VERSION:-16-alpine}
container_name: conductor-postgres
environment:
- POSTGRES_DB=${POSTGRES_DB:-conductor}
- POSTGRES_USER=${POSTGRES_USER:-conductor}
@@ -119,7 +117,6 @@ services:
elasticsearch:
<<: *defaults
image: ${GLOBAL_REGISTRY:-}elasticsearch:${ELASTICSEARCH_VERSION:-8.11.0}
container_name: conductor-elasticsearch
environment:
- discovery.type=single-node
- xpack.security.enabled=false
-2
View File
@@ -36,7 +36,6 @@ services:
kestra:
<<: *defaults
image: ${GLOBAL_REGISTRY:-}kestra/kestra:${KESTRA_VERSION:-latest-full}
container_name: kestra
command: server standalone
ports:
- '${KESTRA_PORT_OVERRIDE:-8080}:8080'
@@ -93,7 +92,6 @@ services:
postgres:
<<: *defaults
image: ${GLOBAL_REGISTRY:-}postgres:${POSTGRES_VERSION:-16-alpine}
container_name: kestra-postgres
environment:
- POSTGRES_DB=${POSTGRES_DB:-kestra}
- POSTGRES_USER=${POSTGRES_USER:-kestra}
+2 -1
View File
@@ -13,7 +13,8 @@ REDIS_VERSION=7-alpine
SERVERLESS_REDIS_HTTP_VERSION=latest
# Note: OpenCut web image needs to be built from source
# See: https://github.com/OpenCut-app/OpenCut
OPENCUT_WEB_IMAGE=opencut/web:latest
# Use a specific version tag instead of latest for production
OPENCUT_WEB_IMAGE=opencut/web:0.1.0
# ----------------------------------------------------------------------------
# Port Override Configuration
-4
View File
@@ -38,7 +38,6 @@ services:
temporal:
<<: *defaults
image: ${GLOBAL_REGISTRY:-}temporalio/auto-setup:${TEMPORAL_VERSION:-1.24.2}
container_name: temporal
ports:
- '${TEMPORAL_FRONTEND_PORT_OVERRIDE:-7233}:7233' # Frontend gRPC
environment:
@@ -86,7 +85,6 @@ services:
temporal-ui:
<<: *defaults
image: ${GLOBAL_REGISTRY:-}temporalio/ui:${TEMPORAL_UI_VERSION:-2.28.0}
container_name: temporal-ui
ports:
- '${TEMPORAL_UI_PORT_OVERRIDE:-8233}:8080'
environment:
@@ -115,7 +113,6 @@ services:
temporal-admin-tools:
<<: *defaults
image: ${GLOBAL_REGISTRY:-}temporalio/admin-tools:${TEMPORAL_VERSION:-1.24.2}
container_name: temporal-admin-tools
profiles:
- dev
environment:
@@ -139,7 +136,6 @@ services:
postgres:
<<: *defaults
image: ${GLOBAL_REGISTRY:-}postgres:${POSTGRES_VERSION:-16-alpine}
container_name: temporal-postgres
environment:
- POSTGRES_DB=${POSTGRES_DB:-temporal}
- POSTGRES_USER=${POSTGRES_USER:-temporal}
-4
View File
@@ -38,7 +38,6 @@ services:
windmill-server:
<<: *defaults
image: ${GHCR_IO_REGISTRY:-ghcr.io}/windmill-labs/windmill:${WINDMILL_VERSION:-main}
container_name: windmill-server
ports:
- '${WINDMILL_PORT_OVERRIDE:-8000}:8000'
environment:
@@ -83,7 +82,6 @@ services:
windmill-worker:
<<: *defaults
image: ${GHCR_IO_REGISTRY:-ghcr.io}/windmill-labs/windmill:${WINDMILL_VERSION:-main}
container_name: windmill-worker
environment:
# Database configuration
- DATABASE_URL=postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres:5432/${POSTGRES_DB}?sslmode=disable
@@ -117,7 +115,6 @@ services:
postgres:
<<: *defaults
image: ${GLOBAL_REGISTRY:-}postgres:${POSTGRES_VERSION:-16-alpine}
container_name: windmill-postgres
environment:
- POSTGRES_DB=${POSTGRES_DB:-windmill}
- POSTGRES_USER=${POSTGRES_USER:-windmill}
@@ -144,7 +141,6 @@ services:
windmill-lsp:
<<: *defaults
image: ${GHCR_IO_REGISTRY:-ghcr.io}/windmill-labs/windmill-lsp:${WINDMILL_LSP_VERSION:-latest}
container_name: windmill-lsp
profiles:
- dev
ports: