feat: add ${GLOBAL_REGISTRY} for change docker image
This commit is contained in:
@@ -14,7 +14,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
service-name:
|
||||
<<: *defaults
|
||||
image: image:${VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}image:${VERSION:-latest}
|
||||
ports:
|
||||
- "${PORT_OVERRIDE:-8080}:8080"
|
||||
volumes:
|
||||
@@ -31,11 +31,11 @@ services:
|
||||
deploy:
|
||||
resources:
|
||||
limits:
|
||||
cpus: '1.00'
|
||||
memory: 512M
|
||||
cpus: ${SERVICE_NAME_CPU_LIMIT:-1.00}
|
||||
memory: ${SERVICE_NAME_MEMORY_LIMIT:-512M}
|
||||
reservations:
|
||||
cpus: '0.25'
|
||||
memory: 128M
|
||||
cpus: ${SERVICE_NAME_CPU_RESERVATION:-0.25}
|
||||
memory: ${SERVICE_NAME_MEMORY_RESERVATION:-128M}
|
||||
|
||||
volumes:
|
||||
service_data:
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
mcp-api-gateway:
|
||||
<<: *defaults
|
||||
image: mcp/api-gateway:${MCP_API_GATEWAY_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}mcp/api-gateway:${MCP_API_GATEWAY_VERSION:-latest}
|
||||
environment:
|
||||
- MCP_HOST=0.0.0.0
|
||||
- TZ=${TZ:-UTC}
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
mcp-arxiv:
|
||||
<<: *defaults
|
||||
image: mcp/arxiv-mcp-server:${MCP_ARXIV_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}mcp/arxiv-mcp-server:${MCP_ARXIV_VERSION:-latest}
|
||||
environment:
|
||||
- ARXIV_STORAGE_PATH=${ARXIV_STORAGE_PATH:-/data/papers}
|
||||
- MCP_HOST=0.0.0.0
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
mcp-basic-memory:
|
||||
<<: *defaults
|
||||
image: mcp/basic-memory:${MCP_BASIC_MEMORY_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}mcp/basic-memory:${MCP_BASIC_MEMORY_VERSION:-latest}
|
||||
environment:
|
||||
- MCP_HOST=0.0.0.0
|
||||
- TZ=${TZ:-UTC}
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
mcp-clickhouse:
|
||||
<<: *defaults
|
||||
image: mcp/clickhouse:${MCP_CLICKHOUSE_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}mcp/clickhouse:${MCP_CLICKHOUSE_VERSION:-latest}
|
||||
environment:
|
||||
- CLICKHOUSE_URL=${CLICKHOUSE_URL:-http://localhost:8123}
|
||||
- CLICKHOUSE_USER=${CLICKHOUSE_USER:-default}
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
mcp-docker:
|
||||
<<: *defaults
|
||||
image: mcp/docker:${MCP_DOCKER_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}mcp/docker:${MCP_DOCKER_VERSION:-latest}
|
||||
environment:
|
||||
- DOCKER_HOST=${DOCKER_HOST:-unix:///var/run/docker.sock}
|
||||
- MCP_HOST=0.0.0.0
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
dockerhub:
|
||||
<<: *defaults
|
||||
image: mcp/dockerhub:${DOCKERHUB_MCP_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}mcp/dockerhub:${DOCKERHUB_MCP_VERSION:-latest}
|
||||
environment:
|
||||
- DOCKERHUB_USERNAME=${DOCKERHUB_USERNAME}
|
||||
- DOCKERHUB_PASSWORD=${DOCKERHUB_PASSWORD}
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
mcp-e2b:
|
||||
<<: *defaults
|
||||
image: mcp/e2b:${MCP_E2B_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}mcp/e2b:${MCP_E2B_VERSION:-latest}
|
||||
environment:
|
||||
- E2B_API_KEY=${E2B_API_KEY}
|
||||
- MCP_HOST=0.0.0.0
|
||||
|
||||
@@ -17,7 +17,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
mcp-elevenlabs:
|
||||
<<: *defaults
|
||||
image: mcp/elevenlabs:${MCP_ELEVENLABS_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}mcp/elevenlabs:${MCP_ELEVENLABS_VERSION:-latest}
|
||||
container_name: mcp-elevenlabs
|
||||
environment:
|
||||
- TZ=${TZ:-UTC}
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
mcp-fetch:
|
||||
<<: *defaults
|
||||
image: mcp/fetch:${MCP_FETCH_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}mcp/fetch:${MCP_FETCH_VERSION:-latest}
|
||||
environment:
|
||||
- MCP_HOST=0.0.0.0
|
||||
- TZ=${TZ:-UTC}
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
mcp-filesystem:
|
||||
<<: *defaults
|
||||
image: mcp/filesystem:${MCP_FILESYSTEM_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}mcp/filesystem:${MCP_FILESYSTEM_VERSION:-latest}
|
||||
environment:
|
||||
- MCP_HOST=0.0.0.0
|
||||
- TZ=${TZ:-UTC}
|
||||
|
||||
@@ -17,7 +17,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
mcp-firecrawl:
|
||||
<<: *defaults
|
||||
image: mcp/firecrawl:${MCP_FIRECRAWL_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}mcp/firecrawl:${MCP_FIRECRAWL_VERSION:-latest}
|
||||
container_name: mcp-firecrawl
|
||||
environment:
|
||||
- TZ=${TZ:-UTC}
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
mcp-grafana:
|
||||
<<: *defaults
|
||||
image: mcp/grafana:${MCP_GRAFANA_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}mcp/grafana:${MCP_GRAFANA_VERSION:-latest}
|
||||
environment:
|
||||
- GRAFANA_URL=${GRAFANA_URL:-http://grafana:3000}
|
||||
- GRAFANA_API_KEY=${GRAFANA_API_KEY}
|
||||
@@ -37,7 +37,7 @@ services:
|
||||
|
||||
grafana:
|
||||
<<: *defaults
|
||||
image: grafana/grafana:${GRAFANA_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}grafana/grafana:${GRAFANA_VERSION:-latest}
|
||||
environment:
|
||||
- GF_SECURITY_ADMIN_USER=${GRAFANA_ADMIN_USER:-admin}
|
||||
- GF_SECURITY_ADMIN_PASSWORD=${GRAFANA_ADMIN_PASSWORD:-admin}
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
mcp-markdownify:
|
||||
<<: *defaults
|
||||
image: mcp/markdownify:${MCP_MARKDOWNIFY_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}mcp/markdownify:${MCP_MARKDOWNIFY_VERSION:-latest}
|
||||
environment:
|
||||
- MCP_HOST=0.0.0.0
|
||||
- TZ=${TZ:-UTC}
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
mcp-markitdown:
|
||||
<<: *defaults
|
||||
image: mcp/markitdown:${MCP_MARKITDOWN_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}mcp/markitdown:${MCP_MARKITDOWN_VERSION:-latest}
|
||||
environment:
|
||||
- MCP_HOST=0.0.0.0
|
||||
- TZ=${TZ:-UTC}
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
mcp-memory:
|
||||
<<: *defaults
|
||||
image: mcp/memory:${MCP_MEMORY_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}mcp/memory:${MCP_MEMORY_VERSION:-latest}
|
||||
environment:
|
||||
- MCP_HOST=0.0.0.0
|
||||
- TZ=${TZ:-UTC}
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
mcp-mongodb:
|
||||
<<: *defaults
|
||||
image: mcp/mongodb:${MCP_MONGODB_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}mcp/mongodb:${MCP_MONGODB_VERSION:-latest}
|
||||
environment:
|
||||
- MONGODB_URI=${MONGODB_URI:-mongodb://mongodb:27017}
|
||||
- MONGODB_DATABASE=${MONGODB_DATABASE:-mcp_db}
|
||||
@@ -37,7 +37,7 @@ services:
|
||||
|
||||
mongodb:
|
||||
<<: *defaults
|
||||
image: mongo:${MONGODB_VERSION:-7}
|
||||
image: ${GLOBAL_REGISTRY:-}mongo:${MONGODB_VERSION:-7}
|
||||
environment:
|
||||
- MONGO_INITDB_ROOT_USERNAME=${MONGO_ROOT_USERNAME:-admin}
|
||||
- MONGO_INITDB_ROOT_PASSWORD=${MONGO_ROOT_PASSWORD:-password}
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
mcp-neo4j-cypher:
|
||||
<<: *defaults
|
||||
image: mcp/neo4j-cypher:${MCP_NEO4J_CYPHER_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}mcp/neo4j-cypher:${MCP_NEO4J_CYPHER_VERSION:-latest}
|
||||
environment:
|
||||
- NEO4J_URL=${NEO4J_URL:-bolt://localhost:7687}
|
||||
- NEO4J_USER=${NEO4J_USER:-neo4j}
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
mcp-neo4j-memory:
|
||||
<<: *defaults
|
||||
image: mcp/neo4j-memory:${MCP_NEO4J_MEMORY_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}mcp/neo4j-memory:${MCP_NEO4J_MEMORY_VERSION:-latest}
|
||||
environment:
|
||||
- NEO4J_URL=${NEO4J_URL:-bolt://localhost:7687}
|
||||
- NEO4J_USER=${NEO4J_USER:-neo4j}
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
mcp-notion:
|
||||
<<: *defaults
|
||||
image: mcp/notion:${MCP_NOTION_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}mcp/notion:${MCP_NOTION_VERSION:-latest}
|
||||
environment:
|
||||
- INTERNAL_INTEGRATION_TOKEN=${INTERNAL_INTEGRATION_TOKEN}
|
||||
- MCP_HOST=0.0.0.0
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
mcp-openapi-schema:
|
||||
<<: *defaults
|
||||
image: mcp/openapi-schema:${MCP_OPENAPI_SCHEMA_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}mcp/openapi-schema:${MCP_OPENAPI_SCHEMA_VERSION:-latest}
|
||||
environment:
|
||||
- MCP_HOST=0.0.0.0
|
||||
- TZ=${TZ:-UTC}
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
mcp-openapi:
|
||||
<<: *defaults
|
||||
image: mcp/openapi:${MCP_OPENAPI_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}mcp/openapi:${MCP_OPENAPI_VERSION:-latest}
|
||||
environment:
|
||||
- MCP_HOST=0.0.0.0
|
||||
- TZ=${TZ:-UTC}
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
mcp-openweather:
|
||||
<<: *defaults
|
||||
image: mcp/openweather:${MCP_OPENWEATHER_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}mcp/openweather:${MCP_OPENWEATHER_VERSION:-latest}
|
||||
environment:
|
||||
- OPENWEATHER_API_KEY=${OPENWEATHER_API_KEY}
|
||||
- MCP_HOST=0.0.0.0
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
mcp-paper-search:
|
||||
<<: *defaults
|
||||
image: mcp/paper-search:${MCP_PAPER_SEARCH_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}mcp/paper-search:${MCP_PAPER_SEARCH_VERSION:-latest}
|
||||
environment:
|
||||
- MCP_HOST=0.0.0.0
|
||||
- TZ=${TZ:-UTC}
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
playwright:
|
||||
<<: *defaults
|
||||
image: mcp/playwright:${PLAYWRIGHT_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}mcp/playwright:${PLAYWRIGHT_VERSION:-latest}
|
||||
environment:
|
||||
- MCP_HOST=0.0.0.0
|
||||
- TZ=${TZ:-UTC}
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
mcp:
|
||||
<<: *defaults
|
||||
image: mcp/redis:${MCP_REDIS_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}mcp/redis:${MCP_REDIS_VERSION:-latest}
|
||||
environment:
|
||||
- REDIS_HOST=redis
|
||||
- REDIS_PORT=6379
|
||||
@@ -37,7 +37,7 @@ services:
|
||||
|
||||
redis:
|
||||
<<: *defaults
|
||||
image: redis:${REDIS_VERSION:-7-alpine}
|
||||
image: ${GLOBAL_REGISTRY:-}redis:${REDIS_VERSION:-7-alpine}
|
||||
command: redis-server --appendonly yes
|
||||
ports:
|
||||
- "${REDIS_PORT_OVERRIDE:-6379}:6379"
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
rust-mcp-filesystem:
|
||||
<<: *defaults
|
||||
image: mcp/rust-mcp-filesystem:${RUST_MCP_FILESYSTEM_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}mcp/rust-mcp-filesystem:${RUST_MCP_FILESYSTEM_VERSION:-latest}
|
||||
environment:
|
||||
- MCP_HOST=0.0.0.0
|
||||
- ALLOWED_PATHS=${ALLOWED_PATHS:-/projects}
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
mcp-sequentialthinking:
|
||||
<<: *defaults
|
||||
image: mcp/sequentialthinking:${MCP_SEQUENTIALTHINKING_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}mcp/sequentialthinking:${MCP_SEQUENTIALTHINKING_VERSION:-latest}
|
||||
environment:
|
||||
- MCP_HOST=0.0.0.0
|
||||
- TZ=${TZ:-UTC}
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
mcp-sqlite:
|
||||
<<: *defaults
|
||||
image: mcp/sqlite:${MCP_SQLITE_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}mcp/sqlite:${MCP_SQLITE_VERSION:-latest}
|
||||
environment:
|
||||
- MCP_HOST=0.0.0.0
|
||||
- TZ=${TZ:-UTC}
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
tavily:
|
||||
<<: *defaults
|
||||
image: mcp/tavily:${TAVILY_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}mcp/tavily:${TAVILY_VERSION:-latest}
|
||||
environment:
|
||||
- TAVILY_API_KEY=${TAVILY_API_KEY}
|
||||
- TZ=${TZ:-UTC}
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
mcp-text-to-graphql:
|
||||
<<: *defaults
|
||||
image: mcp/text-to-graphql:${MCP_TEXT_TO_GRAPHQL_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}mcp/text-to-graphql:${MCP_TEXT_TO_GRAPHQL_VERSION:-latest}
|
||||
environment:
|
||||
- MCP_HOST=0.0.0.0
|
||||
- TZ=${TZ:-UTC}
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
mcp-time:
|
||||
<<: *defaults
|
||||
image: mcp/time:${MCP_TIME_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}mcp/time:${MCP_TIME_VERSION:-latest}
|
||||
environment:
|
||||
- MCP_HOST=0.0.0.0
|
||||
- TZ=${TZ:-UTC}
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
mcp-wolfram-alpha:
|
||||
<<: *defaults
|
||||
image: mcp/wolfram-alpha:${MCP_WOLFRAM_ALPHA_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}mcp/wolfram-alpha:${MCP_WOLFRAM_ALPHA_VERSION:-latest}
|
||||
environment:
|
||||
- WOLFRAM_ALPHA_APPID=${WOLFRAM_ALPHA_APPID}
|
||||
- MCP_HOST=0.0.0.0
|
||||
|
||||
@@ -17,7 +17,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
mcp-youtube-transcript:
|
||||
<<: *defaults
|
||||
image: mcp/youtube-transcript:${MCP_YOUTUBE_TRANSCRIPT_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}mcp/youtube-transcript:${MCP_YOUTUBE_TRANSCRIPT_VERSION:-latest}
|
||||
container_name: mcp-youtube-transcript
|
||||
environment:
|
||||
- TZ=${TZ:-UTC}
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
apache:
|
||||
<<: *defaults
|
||||
image: httpd:${APACHE_VERSION:-2.4.62-alpine3.20}
|
||||
image: ${GLOBAL_REGISTRY:-}httpd:${APACHE_VERSION:-2.4.62-alpine3.20}
|
||||
ports:
|
||||
- "${APACHE_HTTP_PORT_OVERRIDE:-80}:80"
|
||||
- "${APACHE_HTTPS_PORT_OVERRIDE:-443}:443"
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
apisix:
|
||||
<<: *defaults
|
||||
image: apache/apisix:${APISIX_VERSION:-3.13.0-debian}
|
||||
image: ${GLOBAL_REGISTRY:-}apache/apisix:${APISIX_VERSION:-3.13.0-debian}
|
||||
ports:
|
||||
- "${APISIX_HTTP_PORT_OVERRIDE:-9080}:9080"
|
||||
- "${APISIX_HTTPS_PORT_OVERRIDE:-9443}:9443"
|
||||
@@ -98,7 +98,7 @@ services:
|
||||
# Optional: APISIX Dashboard
|
||||
apisix-dashboard:
|
||||
<<: *defaults
|
||||
image: apache/apisix-dashboard:${APISIX_DASHBOARD_VERSION:-3.0.1-alpine}
|
||||
image: ${GLOBAL_REGISTRY:-}apache/apisix-dashboard:${APISIX_DASHBOARD_VERSION:-3.0.1-alpine}
|
||||
ports:
|
||||
- "${APISIX_DASHBOARD_PORT_OVERRIDE:-9000}:9000"
|
||||
volumes:
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
bifrost:
|
||||
<<: *defaults
|
||||
image: maximhq/bifrost:${BIFROST_VERSION:-v1.2.15}
|
||||
image: ${GLOBAL_REGISTRY:-}maximhq/bifrost:${BIFROST_VERSION:-v1.2.15}
|
||||
volumes:
|
||||
- bifrost_data:/app/data
|
||||
ports:
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
bolt-diy:
|
||||
<<: *defaults
|
||||
image: stackblitz/bolt:${BOLT_DIY_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}stackblitz/bolt:${BOLT_DIY_VERSION:-latest}
|
||||
ports:
|
||||
- "${BOLT_DIY_PORT_OVERRIDE:-5173}:5173"
|
||||
environment:
|
||||
|
||||
@@ -36,7 +36,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
budibase:
|
||||
<<: *defaults
|
||||
image: budibase/budibase:${BUDIBASE_VERSION:-3.23.0}
|
||||
image: ${GLOBAL_REGISTRY:-}budibase/budibase:${BUDIBASE_VERSION:-3.23.0}
|
||||
container_name: budibase
|
||||
ports:
|
||||
- "${BUDIBASE_PORT_OVERRIDE:-10000}:80"
|
||||
@@ -90,7 +90,7 @@ services:
|
||||
|
||||
redis:
|
||||
<<: *defaults
|
||||
image: redis:${REDIS_VERSION:-7-alpine}
|
||||
image: ${GLOBAL_REGISTRY:-}redis:${REDIS_VERSION:-7-alpine}
|
||||
container_name: budibase-redis
|
||||
command: redis-server --appendonly yes --maxmemory 256mb --maxmemory-policy allkeys-lru
|
||||
volumes:
|
||||
|
||||
@@ -85,7 +85,7 @@ services:
|
||||
|
||||
bytebot-db:
|
||||
<<: *defaults
|
||||
image: postgres:${POSTGRES_VERSION:-17-alpine}
|
||||
image: ${GLOBAL_REGISTRY:-}postgres:${POSTGRES_VERSION:-17-alpine}
|
||||
environment:
|
||||
- TZ=${TZ:-UTC}
|
||||
- POSTGRES_USER=${POSTGRES_USER:-bytebot}
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
cassandra:
|
||||
<<: *defaults
|
||||
image: cassandra:${CASSANDRA_VERSION:-5.0.2}
|
||||
image: ${GLOBAL_REGISTRY:-}cassandra:${CASSANDRA_VERSION:-5.0.2}
|
||||
ports:
|
||||
- "${CASSANDRA_CQL_PORT_OVERRIDE:-9042}:9042"
|
||||
- "${CASSANDRA_THRIFT_PORT_OVERRIDE:-9160}:9160"
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
clash:
|
||||
<<: *defaults
|
||||
image: centralx/clash:${CLASH_VERSION:-1.18.0}
|
||||
image: ${GLOBAL_REGISTRY:-}centralx/clash:${CLASH_VERSION:-1.18.0}
|
||||
ports:
|
||||
- "7880:80"
|
||||
- "7890:7890"
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
clickhouse:
|
||||
<<: *defaults
|
||||
image: clickhouse/clickhouse-server:${CLICKHOUSE_VERSION:-24.11.1.2557}
|
||||
image: ${GLOBAL_REGISTRY:-}clickhouse/clickhouse-server:${CLICKHOUSE_VERSION:-24.11.1.2557}
|
||||
hostname: clickhouse
|
||||
environment:
|
||||
TZ: ${TZ:-UTC}
|
||||
|
||||
@@ -34,7 +34,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
conductor-server:
|
||||
<<: *defaults
|
||||
image: conductor:server
|
||||
image: ${GLOBAL_REGISTRY:-}conductor:server
|
||||
build:
|
||||
context: https://github.com/conductor-oss/conductor.git#main:docker/server
|
||||
dockerfile: Dockerfile
|
||||
@@ -82,7 +82,7 @@ services:
|
||||
|
||||
postgres:
|
||||
<<: *defaults
|
||||
image: postgres:${POSTGRES_VERSION:-16-alpine}
|
||||
image: ${GLOBAL_REGISTRY:-}postgres:${POSTGRES_VERSION:-16-alpine}
|
||||
container_name: conductor-postgres
|
||||
environment:
|
||||
- POSTGRES_DB=${POSTGRES_DB:-conductor}
|
||||
@@ -108,7 +108,7 @@ services:
|
||||
|
||||
elasticsearch:
|
||||
<<: *defaults
|
||||
image: elasticsearch:${ELASTICSEARCH_VERSION:-8.11.0}
|
||||
image: ${GLOBAL_REGISTRY:-}elasticsearch:${ELASTICSEARCH_VERSION:-8.11.0}
|
||||
container_name: conductor-elasticsearch
|
||||
environment:
|
||||
- discovery.type=single-node
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
consul:
|
||||
<<: *defaults
|
||||
image: consul:${CONSUL_VERSION:-1.20.3}
|
||||
image: ${GLOBAL_REGISTRY:-}consul:${CONSUL_VERSION:-1.20.3}
|
||||
ports:
|
||||
- "${CONSUL_HTTP_PORT_OVERRIDE:-8500}:8500"
|
||||
- "${CONSUL_DNS_PORT_OVERRIDE:-8600}:8600/udp"
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
dify-api:
|
||||
<<: *defaults
|
||||
image: langgenius/dify-api:${DIFY_VERSION:-0.18.2}
|
||||
image: ${GLOBAL_REGISTRY:-}langgenius/dify-api:${DIFY_VERSION:-0.18.2}
|
||||
depends_on:
|
||||
dify-db:
|
||||
condition: service_healthy
|
||||
@@ -48,7 +48,7 @@ services:
|
||||
|
||||
dify-worker:
|
||||
<<: *defaults
|
||||
image: langgenius/dify-api:${DIFY_VERSION:-0.18.2}
|
||||
image: ${GLOBAL_REGISTRY:-}langgenius/dify-api:${DIFY_VERSION:-0.18.2}
|
||||
depends_on:
|
||||
dify-db:
|
||||
condition: service_healthy
|
||||
@@ -81,7 +81,7 @@ services:
|
||||
|
||||
dify-web:
|
||||
<<: *defaults
|
||||
image: langgenius/dify-web:${DIFY_VERSION:-0.18.2}
|
||||
image: ${GLOBAL_REGISTRY:-}langgenius/dify-web:${DIFY_VERSION:-0.18.2}
|
||||
depends_on:
|
||||
dify-api:
|
||||
condition: service_healthy
|
||||
@@ -102,7 +102,7 @@ services:
|
||||
|
||||
dify-db:
|
||||
<<: *defaults
|
||||
image: postgres:15-alpine
|
||||
image: ${GLOBAL_REGISTRY:-}postgres:15-alpine
|
||||
environment:
|
||||
- TZ=${TZ:-UTC}
|
||||
- POSTGRES_USER=${POSTGRES_USER:-dify}
|
||||
@@ -128,7 +128,7 @@ services:
|
||||
|
||||
dify-redis:
|
||||
<<: *defaults
|
||||
image: redis:7-alpine
|
||||
image: ${GLOBAL_REGISTRY:-}redis:7-alpine
|
||||
command: redis-server --requirepass ${REDIS_PASSWORD:-}
|
||||
environment:
|
||||
- TZ=${TZ:-UTC}
|
||||
@@ -151,7 +151,7 @@ services:
|
||||
|
||||
dify-weaviate:
|
||||
<<: *defaults
|
||||
image: semitechnologies/weaviate:${WEAVIATE_VERSION:-1.28.12}
|
||||
image: ${GLOBAL_REGISTRY:-}semitechnologies/weaviate:${WEAVIATE_VERSION:-1.28.12}
|
||||
profiles:
|
||||
- weaviate
|
||||
environment:
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
dnsmasq:
|
||||
<<: *defaults
|
||||
image: dockurr/dnsmasq:${DNSMASQ_VERSION:-2.91}
|
||||
image: ${GLOBAL_REGISTRY:-}dockurr/dnsmasq:${DNSMASQ_VERSION:-2.91}
|
||||
volumes:
|
||||
- ./dnsmasq.conf:/etc/dnsmasq.conf:ro
|
||||
ports:
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
registry:
|
||||
<<: *defaults
|
||||
image: registry:${REGISTRY_VERSION:-3.0.0}
|
||||
image: ${GLOBAL_REGISTRY:-}registry:${REGISTRY_VERSION:-3.0.0}
|
||||
volumes:
|
||||
- ./certs:/certs:ro
|
||||
- ./config.yml:/etc/distribution/config.yml:ro
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
dockge:
|
||||
<<: *defaults
|
||||
image: louislam/dockge:${DOCKGE_VERSION:-1}
|
||||
image: ${GLOBAL_REGISTRY:-}louislam/dockge:${DOCKGE_VERSION:-1}
|
||||
ports:
|
||||
- "${PORT_OVERRIDE:-5001}:5001"
|
||||
volumes:
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
duckdb:
|
||||
<<: *defaults
|
||||
image: davidgasquez/duckdb:${DUCKDB_VERSION:-v1.1.3}
|
||||
image: ${GLOBAL_REGISTRY:-}davidgasquez/duckdb:${DUCKDB_VERSION:-v1.1.3}
|
||||
command: ["duckdb", "/data/duckdb.db"]
|
||||
stdin_open: true
|
||||
tty: true
|
||||
|
||||
@@ -100,7 +100,7 @@ services:
|
||||
|
||||
redis:
|
||||
<<: *defaults
|
||||
image: redis:${REDIS_VERSION:-alpine}
|
||||
image: ${GLOBAL_REGISTRY:-}redis:${REDIS_VERSION:-alpine}
|
||||
command: redis-server --bind 0.0.0.0
|
||||
volumes:
|
||||
- redis_data:/data
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
jobmanager:
|
||||
<<: *defaults
|
||||
image: flink:${FLINK_VERSION:-1.20.0-scala_2.12-java11}
|
||||
image: ${GLOBAL_REGISTRY:-}flink:${FLINK_VERSION:-1.20.0-scala_2.12-java11}
|
||||
hostname: jobmanager
|
||||
command: jobmanager
|
||||
environment:
|
||||
@@ -43,7 +43,7 @@ services:
|
||||
|
||||
taskmanager:
|
||||
<<: *defaults
|
||||
image: flink:${FLINK_VERSION:-1.20.0-scala_2.12-java11}
|
||||
image: ${GLOBAL_REGISTRY:-}flink:${FLINK_VERSION:-1.20.0-scala_2.12-java11}
|
||||
command: taskmanager
|
||||
environment:
|
||||
TZ: ${TZ:-UTC}
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
frpc:
|
||||
<<: *defaults
|
||||
image: snowdreamtech/frpc:${FRPC_VERSION:-0.64.0}
|
||||
image: ${GLOBAL_REGISTRY:-}snowdreamtech/frpc:${FRPC_VERSION:-0.64.0}
|
||||
volumes:
|
||||
- ./frpc.toml:/etc/frp/frpc.toml:ro
|
||||
environment:
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
frps:
|
||||
<<: *defaults
|
||||
image: snowdreamtech/frps:${FRPS_VERSION:-0.64.0}
|
||||
image: ${GLOBAL_REGISTRY:-}snowdreamtech/frps:${FRPS_VERSION:-0.64.0}
|
||||
volumes:
|
||||
- ./frps.toml:/etc/frp/frps.toml:ro
|
||||
ports:
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
# Gitea Runner version
|
||||
GITEA_RUNNER_VERSION=0.2.13-dind
|
||||
|
||||
# Gitea instance URL
|
||||
INSTANCE_URL=http://localhost:3000
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
gitea_runner:
|
||||
<<: *defaults
|
||||
image: gitea/act_runner:0.2.12
|
||||
image: ${GLOBAL_REGISTRY:-}gitea/act_runner:${GITEA_RUNNER_VERSION:-0.2.13}
|
||||
environment:
|
||||
TZ: ${TZ:-UTC}
|
||||
CONFIG_FILE: /config.yaml
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
gitea:
|
||||
<<: *defaults
|
||||
image: gitea/gitea:${GITEA_VERSION:-1.24.6-rootless}
|
||||
image: ${GLOBAL_REGISTRY:-}gitea/gitea:${GITEA_VERSION:-1.24.6-rootless}
|
||||
environment:
|
||||
- USER_UID=1000
|
||||
- USER_GID=1000
|
||||
@@ -44,7 +44,7 @@ services:
|
||||
|
||||
db:
|
||||
<<: *defaults
|
||||
image: postgres:${POSTGRES_VERSION:-17.6}
|
||||
image: ${GLOBAL_REGISTRY:-}postgres:${POSTGRES_VERSION:-17.6}
|
||||
environment:
|
||||
- TZ=${TZ:-UTC}
|
||||
- POSTGRES_USER=${POSTGRES_USER:-gitea}
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
gitlab-runner:
|
||||
<<: *defaults
|
||||
image: gitlab/gitlab-runner:${GITLAB_RUNNER_VERSION:-alpine3.21-v18.4.0}
|
||||
image: ${GLOBAL_REGISTRY:-}gitlab/gitlab-runner:${GITLAB_RUNNER_VERSION:-alpine3.21-v18.4.0}
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
- ./config:/etc/gitlab-runner
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
gitlab:
|
||||
<<: *defaults
|
||||
image: gitlab/gitlab-ce:${GITLAB_VERSION:-18.4.0-ce.0}
|
||||
image: ${GLOBAL_REGISTRY:-}gitlab/gitlab-ce:${GITLAB_VERSION:-18.4.0-ce.0}
|
||||
ports:
|
||||
- "${GITLAB_PORT_OVERRIDE_HTTPS:-5443}:443"
|
||||
- "${GITLAB_PORT_OVERRIDE_HTTP:-5080}:80"
|
||||
|
||||
@@ -67,7 +67,7 @@ To use AMD GPUs with ROCm support:
|
||||
1. Use the ROCm-specific image in `docker-compose.yaml`:
|
||||
|
||||
```yaml
|
||||
image: gpustack/gpustack:${GPUSTACK_VERSION:-v0.7.1}-rocm
|
||||
image: ${GLOBAL_REGISTRY:-}gpustack/gpustack:${GPUSTACK_VERSION:-v0.7.1}-rocm
|
||||
```
|
||||
|
||||
2. Change the device driver to `amdgpu`:
|
||||
|
||||
@@ -67,7 +67,7 @@ deploy:
|
||||
1. 在 `docker-compose.yaml` 中使用 ROCm 特定镜像:
|
||||
|
||||
```yaml
|
||||
image: gpustack/gpustack:${GPUSTACK_VERSION:-v0.7.1}-rocm
|
||||
image: ${GLOBAL_REGISTRY:-}gpustack/gpustack:${GPUSTACK_VERSION:-v0.7.1}-rocm
|
||||
```
|
||||
|
||||
2. 将设备驱动更改为 `amdgpu`:
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
gpustack:
|
||||
<<: *defaults
|
||||
image: gpustack/gpustack:${GPUSTACK_VERSION:-v0.7.1}
|
||||
image: ${GLOBAL_REGISTRY:-}gpustack/gpustack:${GPUSTACK_VERSION:-v0.7.1}
|
||||
ports:
|
||||
- "${GPUSTACK_PORT_OVERRIDE:-80}:80"
|
||||
volumes:
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
grafana:
|
||||
<<: *defaults
|
||||
image: grafana/grafana:${GRAFANA_VERSION:-12.1.1}
|
||||
image: ${GLOBAL_REGISTRY:-}grafana/grafana:${GRAFANA_VERSION:-12.1.1}
|
||||
ports:
|
||||
- "${GRAFANA_PORT_OVERRIDE:-3000}:3000"
|
||||
volumes:
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
halo:
|
||||
<<: *defaults
|
||||
image: halohub/halo:${HALO_VERSION:-2.21.9}
|
||||
image: ${GLOBAL_REGISTRY:-}halohub/halo:${HALO_VERSION:-2.21.9}
|
||||
ports:
|
||||
- "${HALO_PORT:-8090}:8090"
|
||||
volumes:
|
||||
@@ -43,7 +43,7 @@ services:
|
||||
|
||||
halo-db:
|
||||
<<: *defaults
|
||||
image: postgres:${POSTGRES_VERSION:-17.2-alpine3.21}
|
||||
image: ${GLOBAL_REGISTRY:-}postgres:${POSTGRES_VERSION:-17.2-alpine3.21}
|
||||
environment:
|
||||
- TZ=${TZ:-UTC}
|
||||
- POSTGRES_USER=${POSTGRES_USER:-postgres}
|
||||
|
||||
@@ -10,7 +10,7 @@ services:
|
||||
# Harbor Core
|
||||
harbor-core:
|
||||
<<: *defaults
|
||||
image: goharbor/harbor-core:${HARBOR_VERSION:-v2.12.0}
|
||||
image: ${GLOBAL_REGISTRY:-}goharbor/harbor-core:${HARBOR_VERSION:-v2.12.0}
|
||||
depends_on:
|
||||
harbor-db:
|
||||
condition: service_healthy
|
||||
@@ -48,7 +48,7 @@ services:
|
||||
# Harbor JobService
|
||||
harbor-jobservice:
|
||||
<<: *defaults
|
||||
image: goharbor/harbor-jobservice:${HARBOR_VERSION:-v2.12.0}
|
||||
image: ${GLOBAL_REGISTRY:-}goharbor/harbor-jobservice:${HARBOR_VERSION:-v2.12.0}
|
||||
depends_on:
|
||||
harbor-db:
|
||||
condition: service_healthy
|
||||
@@ -71,7 +71,7 @@ services:
|
||||
# Harbor Registry
|
||||
harbor-registry:
|
||||
<<: *defaults
|
||||
image: goharbor/registry-photon:${HARBOR_VERSION:-v2.12.0}
|
||||
image: ${GLOBAL_REGISTRY:-}goharbor/registry-photon:${HARBOR_VERSION:-v2.12.0}
|
||||
volumes:
|
||||
- harbor_registry:/storage
|
||||
environment:
|
||||
@@ -87,14 +87,14 @@ services:
|
||||
# Harbor Portal (UI)
|
||||
harbor-portal:
|
||||
<<: *defaults
|
||||
image: goharbor/harbor-portal:${HARBOR_VERSION:-v2.12.0}
|
||||
image: ${GLOBAL_REGISTRY:-}goharbor/harbor-portal:${HARBOR_VERSION:-v2.12.0}
|
||||
environment:
|
||||
- TZ=${TZ:-UTC}
|
||||
|
||||
# Harbor Proxy (Nginx)
|
||||
harbor-proxy:
|
||||
<<: *defaults
|
||||
image: goharbor/nginx-photon:${HARBOR_VERSION:-v2.12.0}
|
||||
image: ${GLOBAL_REGISTRY:-}goharbor/nginx-photon:${HARBOR_VERSION:-v2.12.0}
|
||||
ports:
|
||||
- "${HARBOR_HTTP_PORT_OVERRIDE:-80}:8080"
|
||||
- "${HARBOR_HTTPS_PORT_OVERRIDE:-443}:8443"
|
||||
@@ -117,7 +117,7 @@ services:
|
||||
# Harbor Database
|
||||
harbor-db:
|
||||
<<: *defaults
|
||||
image: goharbor/harbor-db:${HARBOR_VERSION:-v2.12.0}
|
||||
image: ${GLOBAL_REGISTRY:-}goharbor/harbor-db:${HARBOR_VERSION:-v2.12.0}
|
||||
volumes:
|
||||
- harbor_db:/var/lib/postgresql/data
|
||||
environment:
|
||||
@@ -142,7 +142,7 @@ services:
|
||||
# Harbor Redis
|
||||
harbor-redis:
|
||||
<<: *defaults
|
||||
image: goharbor/redis-photon:${HARBOR_VERSION:-v2.12.0}
|
||||
image: ${GLOBAL_REGISTRY:-}goharbor/redis-photon:${HARBOR_VERSION:-v2.12.0}
|
||||
volumes:
|
||||
- harbor_redis:/var/lib/redis
|
||||
environment:
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
hbase:
|
||||
<<: *defaults
|
||||
image: harisekhon/hbase:${HBASE_VERSION:-2.6}
|
||||
image: ${GLOBAL_REGISTRY:-}harisekhon/hbase:${HBASE_VERSION:-2.6}
|
||||
hostname: hbase
|
||||
environment:
|
||||
TZ: ${TZ:-UTC}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
# Docker Registry 镜像地址(可选)
|
||||
# Docker registry
|
||||
DOCKER_REGISTRY=docker.io
|
||||
|
||||
# 构建版本
|
||||
BUILD_VERSION=latest
|
||||
# Build version
|
||||
BUILD_VERSION=1.6.0
|
||||
|
||||
# Hugging Face 镜像端点(可选,用于中国大陆用户)
|
||||
# Hugging Face Endpoint, optional for China users
|
||||
# HF_ENDPOINT=https://hf-mirror.com
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
lama-cleaner:
|
||||
<<: *defaults
|
||||
image: ${DOCKER_REGISTRY:-docker.io}/local/lama-cleaner:${BUILD_VERSION:-latest}
|
||||
image: ${DOCKER_REGISTRY:-docker.io}/local/lama-cleaner:${BUILD_VERSION:-1.6.0}
|
||||
ports:
|
||||
- 8080:8080
|
||||
build:
|
||||
@@ -17,7 +17,7 @@ services:
|
||||
dockerfile: Dockerfile
|
||||
environment:
|
||||
TZ: ${TZ:-UTC}
|
||||
# HF_ENDPOINT: https://hf-mirror.com
|
||||
HF_ENDPOINT: ${HF_ENDPOINT:-}
|
||||
volumes:
|
||||
- ./models:/root/.cache
|
||||
command:
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
jenkins:
|
||||
<<: *defaults
|
||||
image: jenkins/jenkins:${JENKINS_VERSION:-2.486-lts-jdk17}
|
||||
image: ${GLOBAL_REGISTRY:-}jenkins/jenkins:${JENKINS_VERSION:-2.486-lts-jdk17}
|
||||
ports:
|
||||
- "${JENKINS_HTTP_PORT_OVERRIDE:-8080}:8080"
|
||||
- "${JENKINS_AGENT_PORT_OVERRIDE:-50000}:50000"
|
||||
|
||||
@@ -10,7 +10,7 @@ services:
|
||||
# Zookeeper for Kafka coordination
|
||||
zookeeper:
|
||||
<<: *defaults
|
||||
image: confluentinc/cp-zookeeper:${KAFKA_VERSION:-7.8.0}
|
||||
image: ${GLOBAL_REGISTRY:-}confluentinc/cp-zookeeper:${KAFKA_VERSION:-7.8.0}
|
||||
ports:
|
||||
- "${ZOOKEEPER_CLIENT_PORT_OVERRIDE:-2181}:2181"
|
||||
volumes:
|
||||
@@ -43,7 +43,7 @@ services:
|
||||
# Kafka broker
|
||||
kafka:
|
||||
<<: *defaults
|
||||
image: confluentinc/cp-kafka:${KAFKA_VERSION:-7.8.0}
|
||||
image: ${GLOBAL_REGISTRY:-}confluentinc/cp-kafka:${KAFKA_VERSION:-7.8.0}
|
||||
depends_on:
|
||||
zookeeper:
|
||||
condition: service_healthy
|
||||
@@ -91,7 +91,7 @@ services:
|
||||
# Kafka UI (optional)
|
||||
kafka-ui:
|
||||
<<: *defaults
|
||||
image: provectuslabs/kafka-ui:${KAFKA_UI_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}provectuslabs/kafka-ui:${KAFKA_UI_VERSION:-latest}
|
||||
depends_on:
|
||||
kafka:
|
||||
condition: service_healthy
|
||||
|
||||
@@ -35,7 +35,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
kestra:
|
||||
<<: *defaults
|
||||
image: kestra/kestra:${KESTRA_VERSION:-latest-full}
|
||||
image: ${GLOBAL_REGISTRY:-}kestra/kestra:${KESTRA_VERSION:-latest-full}
|
||||
container_name: kestra
|
||||
command: server standalone
|
||||
ports:
|
||||
@@ -92,7 +92,7 @@ services:
|
||||
|
||||
postgres:
|
||||
<<: *defaults
|
||||
image: postgres:${POSTGRES_VERSION:-16-alpine}
|
||||
image: ${GLOBAL_REGISTRY:-}postgres:${POSTGRES_VERSION:-16-alpine}
|
||||
container_name: kestra-postgres
|
||||
environment:
|
||||
- POSTGRES_DB=${POSTGRES_DB:-kestra}
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
kibana:
|
||||
<<: *defaults
|
||||
image: docker.elastic.co/kibana/kibana:${KIBANA_VERSION:-9.2.0}
|
||||
image: ${GLOBAL_REGISTRY:-}docker.elastic.co/kibana/kibana:${KIBANA_VERSION:-9.2.0}
|
||||
ports:
|
||||
- "${KIBANA_PORT_OVERRIDE:-5601}:5601"
|
||||
volumes:
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
kodbox:
|
||||
<<: *defaults
|
||||
image: kodcloud/kodbox:${KODBOX_VERSION:-1.62}
|
||||
image: ${GLOBAL_REGISTRY:-}kodcloud/kodbox:${KODBOX_VERSION:-1.62}
|
||||
ports:
|
||||
- "${KODBOX_PORT:-80}:80"
|
||||
volumes:
|
||||
@@ -46,7 +46,7 @@ services:
|
||||
|
||||
kodbox-db:
|
||||
<<: *defaults
|
||||
image: mysql:${MYSQL_VERSION:-9.4.0}
|
||||
image: ${GLOBAL_REGISTRY:-}mysql:${MYSQL_VERSION:-9.4.0}
|
||||
environment:
|
||||
- TZ=${TZ:-UTC}
|
||||
- MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD:-root123}
|
||||
@@ -76,7 +76,7 @@ services:
|
||||
|
||||
kodbox-redis:
|
||||
<<: *defaults
|
||||
image: redis:${REDIS_VERSION:-8.2.1-alpine3.22}
|
||||
image: ${GLOBAL_REGISTRY:-}redis:${REDIS_VERSION:-8.2.1-alpine3.22}
|
||||
command:
|
||||
- redis-server
|
||||
- --requirepass
|
||||
|
||||
@@ -10,7 +10,7 @@ services:
|
||||
# Kong Database
|
||||
kong-db:
|
||||
<<: *defaults
|
||||
image: postgres:${POSTGRES_VERSION:-16.6-alpine3.21}
|
||||
image: ${GLOBAL_REGISTRY:-}postgres:${POSTGRES_VERSION:-16.6-alpine3.21}
|
||||
volumes:
|
||||
- kong_db_data:/var/lib/postgresql/data
|
||||
environment:
|
||||
@@ -36,7 +36,7 @@ services:
|
||||
# Kong Database Migration
|
||||
kong-migrations:
|
||||
<<: *defaults
|
||||
image: kong:${KONG_VERSION:-3.8.0-alpine}
|
||||
image: ${GLOBAL_REGISTRY:-}kong:${KONG_VERSION:-3.8.0-alpine}
|
||||
depends_on:
|
||||
kong-db:
|
||||
condition: service_healthy
|
||||
@@ -53,7 +53,7 @@ services:
|
||||
# Kong Gateway
|
||||
kong:
|
||||
<<: *defaults
|
||||
image: kong:${KONG_VERSION:-3.8.0-alpine}
|
||||
image: ${GLOBAL_REGISTRY:-}kong:${KONG_VERSION:-3.8.0-alpine}
|
||||
depends_on:
|
||||
kong-db:
|
||||
condition: service_healthy
|
||||
@@ -98,7 +98,7 @@ services:
|
||||
# Kong Manager (Optional GUI)
|
||||
kong-gui:
|
||||
<<: *defaults
|
||||
image: pantsel/konga:${KONGA_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}pantsel/konga:${KONGA_VERSION:-latest}
|
||||
depends_on:
|
||||
kong:
|
||||
condition: service_healthy
|
||||
|
||||
@@ -36,7 +36,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
langflow:
|
||||
<<: *defaults
|
||||
image: langflowai/langflow:${LANGFLOW_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}langflowai/langflow:${LANGFLOW_VERSION:-latest}
|
||||
pull_policy: always
|
||||
container_name: langflow
|
||||
ports:
|
||||
@@ -100,7 +100,7 @@ services:
|
||||
|
||||
postgres:
|
||||
<<: *defaults
|
||||
image: postgres:${POSTGRES_VERSION:-16-alpine}
|
||||
image: ${GLOBAL_REGISTRY:-}postgres:${POSTGRES_VERSION:-16-alpine}
|
||||
container_name: langflow-postgres
|
||||
environment:
|
||||
- POSTGRES_DB=${POSTGRES_DB:-langflow}
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
langfuse-server:
|
||||
<<: *defaults
|
||||
image: langfuse/langfuse:${LANGFUSE_VERSION:-3.115.0}
|
||||
image: ${GLOBAL_REGISTRY:-}langfuse/langfuse:${LANGFUSE_VERSION:-3.115.0}
|
||||
ports:
|
||||
- "${LANGFUSE_PORT:-3000}:3000"
|
||||
environment:
|
||||
@@ -40,7 +40,7 @@ services:
|
||||
|
||||
langfuse-db:
|
||||
<<: *defaults
|
||||
image: postgres:${POSTGRES_VERSION:-17.2-alpine3.21}
|
||||
image: ${GLOBAL_REGISTRY:-}postgres:${POSTGRES_VERSION:-17.2-alpine3.21}
|
||||
environment:
|
||||
- TZ=${TZ:-UTC}
|
||||
- POSTGRES_USER=${POSTGRES_USER:-postgres}
|
||||
|
||||
@@ -49,7 +49,7 @@ services:
|
||||
|
||||
db:
|
||||
<<: *defaults
|
||||
image: postgres:${POSTGRES_VERSION:-16}
|
||||
image: ${GLOBAL_REGISTRY:-}postgres:${POSTGRES_VERSION:-16}
|
||||
environment:
|
||||
- POSTGRES_DB=litellm
|
||||
- POSTGRES_USER=llmproxy
|
||||
@@ -76,7 +76,7 @@ services:
|
||||
|
||||
prometheus:
|
||||
<<: *defaults
|
||||
image: prom/prometheus:${PROMETHEUS_VERSION:-v3.3.1}
|
||||
image: ${GLOBAL_REGISTRY:-}prom/prometheus:${PROMETHEUS_VERSION:-v3.3.1}
|
||||
profiles:
|
||||
- metrics
|
||||
volumes:
|
||||
|
||||
@@ -8,7 +8,7 @@ x-defaults: &defaults
|
||||
|
||||
x-mariadb-galera: &mariadb-galera
|
||||
<<: *defaults
|
||||
image: mariadb:${MARIADB_VERSION:-11.7.2}
|
||||
image: ${GLOBAL_REGISTRY:-}mariadb:${MARIADB_VERSION:-11.7.2}
|
||||
environment: &galera-env
|
||||
TZ: ${TZ:-UTC}
|
||||
MARIADB_ROOT_PASSWORD: ${MARIADB_ROOT_PASSWORD:-galera}
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
milvus-standalone-embed:
|
||||
<<: *defaults
|
||||
image: milvusdb/milvus:${MILVUS_VERSION:-v2.6.3}
|
||||
image: ${GLOBAL_REGISTRY:-}milvusdb/milvus:${MILVUS_VERSION:-v2.6.3}
|
||||
security_opt:
|
||||
- seccomp:unconfined
|
||||
environment:
|
||||
@@ -45,7 +45,7 @@ services:
|
||||
|
||||
attu:
|
||||
<<: *defaults
|
||||
image: zilliz/attu:${ATTU_VERSION:-v2.6.1}
|
||||
image: ${GLOBAL_REGISTRY:-}zilliz/attu:${ATTU_VERSION:-v2.6.1}
|
||||
profiles:
|
||||
- attu
|
||||
environment:
|
||||
|
||||
@@ -36,7 +36,7 @@ services:
|
||||
|
||||
minio:
|
||||
<<: *defaults
|
||||
image: minio/minio:${MINIO_VERSION:-RELEASE.2024-12-18T13-15-44Z}
|
||||
image: ${GLOBAL_REGISTRY:-}minio/minio:${MINIO_VERSION:-RELEASE.2024-12-18T13-15-44Z}
|
||||
environment:
|
||||
TZ: ${TZ:-UTC}
|
||||
MINIO_ROOT_USER: ${MINIO_ROOT_USER:-minioadmin}
|
||||
@@ -64,7 +64,7 @@ services:
|
||||
|
||||
milvus-standalone:
|
||||
<<: *defaults
|
||||
image: milvusdb/milvus:${MILVUS_VERSION:-v2.6.3}
|
||||
image: ${GLOBAL_REGISTRY:-}milvusdb/milvus:${MILVUS_VERSION:-v2.6.3}
|
||||
command: ["milvus", "run", "standalone"]
|
||||
security_opt:
|
||||
- seccomp:unconfined
|
||||
@@ -100,7 +100,7 @@ services:
|
||||
|
||||
attu:
|
||||
<<: *defaults
|
||||
image: zilliz/attu:${ATTU_VERSION:-v2.6.1}
|
||||
image: ${GLOBAL_REGISTRY:-}zilliz/attu:${ATTU_VERSION:-v2.6.1}
|
||||
profiles:
|
||||
- attu
|
||||
environment:
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
minecraft-bedrock:
|
||||
<<: *defaults
|
||||
image: itzg/minecraft-bedrock-server:${BEDROCK_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}itzg/minecraft-bedrock-server:${BEDROCK_VERSION:-latest}
|
||||
environment:
|
||||
TZ: ${TZ:-UTC}
|
||||
EULA: "${EULA:-TRUE}"
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
minio:
|
||||
<<: *defaults
|
||||
image: minio/minio:${MINIO_VERSION:-RELEASE.2025-09-07T16-13-09Z}
|
||||
image: ${GLOBAL_REGISTRY:-}minio/minio:${MINIO_VERSION:-RELEASE.2025-09-07T16-13-09Z}
|
||||
ports:
|
||||
- "${MINIO_PORT_OVERRIDE_API:-9000}:9000"
|
||||
- "${MINIO_PORT_OVERRIDE_WEBUI:-9001}:9001"
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
postgres:
|
||||
<<: *defaults
|
||||
image: postgres:${POSTGRES_VERSION:-17.6-alpine}
|
||||
image: ${GLOBAL_REGISTRY:-}postgres:${POSTGRES_VERSION:-17.6-alpine}
|
||||
environment:
|
||||
TZ: ${TZ:-UTC}
|
||||
POSTGRES_USER: ${POSTGRES_USER:-mlflow}
|
||||
@@ -34,7 +34,7 @@ services:
|
||||
|
||||
minio:
|
||||
<<: *defaults
|
||||
image: minio/minio:${MINIO_VERSION:-RELEASE.2025-01-07T16-13-09Z}
|
||||
image: ${GLOBAL_REGISTRY:-}minio/minio:${MINIO_VERSION:-RELEASE.2025-01-07T16-13-09Z}
|
||||
command: server /data --console-address ":9001"
|
||||
environment:
|
||||
TZ: ${TZ:-UTC}
|
||||
@@ -62,7 +62,7 @@ services:
|
||||
|
||||
minio-init:
|
||||
<<: *defaults
|
||||
image: minio/mc:${MINIO_MC_VERSION:-RELEASE.2025-01-07T17-25-52Z}
|
||||
image: ${GLOBAL_REGISTRY:-}minio/mc:${MINIO_MC_VERSION:-RELEASE.2025-01-07T17-25-52Z}
|
||||
depends_on:
|
||||
minio:
|
||||
condition: service_healthy
|
||||
|
||||
@@ -8,7 +8,7 @@ x-defaults: &defaults
|
||||
|
||||
x-mongo: &mongo
|
||||
<<: *defaults
|
||||
image: mongo:${MONGO_VERSION:-8.0.13}
|
||||
image: ${GLOBAL_REGISTRY:-}mongo:${MONGO_VERSION:-8.0.13}
|
||||
environment:
|
||||
TZ: ${TZ:-UTC}
|
||||
MONGO_INITDB_ROOT_USERNAME: ${MONGO_INITDB_ROOT_USERNAME:-root}
|
||||
@@ -51,7 +51,7 @@ services:
|
||||
|
||||
mongo-init:
|
||||
<<: *defaults
|
||||
image: mongo:${MONGO_VERSION:-8.0.13}
|
||||
image: ${GLOBAL_REGISTRY:-}mongo:${MONGO_VERSION:-8.0.13}
|
||||
restart: on-failure
|
||||
depends_on:
|
||||
mongo1:
|
||||
|
||||
@@ -8,7 +8,7 @@ x-defaults: &defaults
|
||||
|
||||
x-mongo: &mongo
|
||||
<<: *defaults
|
||||
image: mongo:${MONGO_VERSION:-8.0.13}
|
||||
image: ${GLOBAL_REGISTRY:-}mongo:${MONGO_VERSION:-8.0.13}
|
||||
environment:
|
||||
TZ: ${TZ:-UTC}
|
||||
MONGO_INITDB_ROOT_USERNAME: ${MONGO_INITDB_ROOT_USERNAME:-root}
|
||||
@@ -60,7 +60,7 @@ services:
|
||||
|
||||
mongo-init:
|
||||
<<: *defaults
|
||||
image: mongo:${MONGO_VERSION:-8.0.13}
|
||||
image: ${GLOBAL_REGISTRY:-}mongo:${MONGO_VERSION:-8.0.13}
|
||||
restart: on-failure
|
||||
depends_on:
|
||||
mongo1:
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
mongo:
|
||||
<<: *defaults
|
||||
image: mongo:${MONGO_VERSION:-8.0.13}
|
||||
image: ${GLOBAL_REGISTRY:-}mongo:${MONGO_VERSION:-8.0.13}
|
||||
environment:
|
||||
TZ: ${TZ:-UTC}
|
||||
MONGO_INITDB_ROOT_USERNAME: ${MONGO_INITDB_ROOT_USERNAME:-root}
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
mysql:
|
||||
<<: *defaults
|
||||
image: mysql:${MYSQL_VERSION:-9.4.0}
|
||||
image: ${GLOBAL_REGISTRY:-}mysql:${MYSQL_VERSION:-9.4.0}
|
||||
ports:
|
||||
- "${MYSQL_PORT_OVERRIDE:-3306}:3306"
|
||||
volumes:
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
n8n:
|
||||
<<: *defaults
|
||||
image: n8nio/n8n:${N8N_VERSION:-1.114.0}
|
||||
image: ${GLOBAL_REGISTRY:-}n8nio/n8n:${N8N_VERSION:-1.114.0}
|
||||
ports:
|
||||
- "${N8N_PORT:-5678}:5678"
|
||||
volumes:
|
||||
@@ -56,7 +56,7 @@ services:
|
||||
|
||||
n8n-db:
|
||||
<<: *defaults
|
||||
image: postgres:${POSTGRES_VERSION:-17.2-alpine3.21}
|
||||
image: ${GLOBAL_REGISTRY:-}postgres:${POSTGRES_VERSION:-17.2-alpine3.21}
|
||||
environment:
|
||||
- TZ=${TZ:-UTC}
|
||||
- POSTGRES_USER=${DB_POSTGRESDB_USER:-n8n}
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
nacos:
|
||||
<<: *defaults
|
||||
image: nacos/nacos-server:${NACOS_VERSION:-v3.1.0-slim}
|
||||
image: ${GLOBAL_REGISTRY:-}nacos/nacos-server:${NACOS_VERSION:-v3.1.0-slim}
|
||||
ports:
|
||||
- "${NACOS_HTTP_PORT_OVERRIDE:-8848}:8848"
|
||||
- "${NACOS_GRPC_PORT_OVERRIDE:-9848}:9848"
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
metad:
|
||||
<<: *defaults
|
||||
image: vesoft/nebula-metad:${NEBULA_VERSION:-v3.8.0}
|
||||
image: ${GLOBAL_REGISTRY:-}vesoft/nebula-metad:${NEBULA_VERSION:-v3.8.0}
|
||||
environment:
|
||||
- TZ=${TZ:-UTC}
|
||||
- USER=root
|
||||
@@ -44,7 +44,7 @@ services:
|
||||
|
||||
storaged:
|
||||
<<: *defaults
|
||||
image: vesoft/nebula-storaged:${NEBULA_VERSION:-v3.8.0}
|
||||
image: ${GLOBAL_REGISTRY:-}vesoft/nebula-storaged:${NEBULA_VERSION:-v3.8.0}
|
||||
environment:
|
||||
- TZ=${TZ:-UTC}
|
||||
- USER=root
|
||||
@@ -82,7 +82,7 @@ services:
|
||||
|
||||
graphd:
|
||||
<<: *defaults
|
||||
image: vesoft/nebula-graphd:${NEBULA_VERSION:-v3.8.0}
|
||||
image: ${GLOBAL_REGISTRY:-}vesoft/nebula-graphd:${NEBULA_VERSION:-v3.8.0}
|
||||
environment:
|
||||
- TZ=${TZ:-UTC}
|
||||
- USER=root
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
neo4j:
|
||||
<<: *defaults
|
||||
image: neo4j:${NEO4J_VERSION:-5.27.4-community}
|
||||
image: ${GLOBAL_REGISTRY:-}neo4j:${NEO4J_VERSION:-5.27.4-community}
|
||||
ports:
|
||||
- "${NEO4J_HTTP_PORT_OVERRIDE:-7474}:7474"
|
||||
- "${NEO4J_BOLT_PORT_OVERRIDE:-7687}:7687"
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
nginx:
|
||||
<<: *defaults
|
||||
image: nginx:${NGINX_VERSION:-1.29.2-alpine3.22}
|
||||
image: ${GLOBAL_REGISTRY:-}nginx:${NGINX_VERSION:-1.29.2-alpine3.22}
|
||||
ports:
|
||||
- "${NGINX_HTTP_PORT_OVERRIDE:-80}:80"
|
||||
- "${NGINX_HTTPS_PORT_OVERRIDE:-443}:443"
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
node-exporter:
|
||||
<<: *defaults
|
||||
image: prom/node-exporter:${NODE_EXPORTER_VERSION:-v1.8.2}
|
||||
image: ${GLOBAL_REGISTRY:-}prom/node-exporter:${NODE_EXPORTER_VERSION:-v1.8.2}
|
||||
ports:
|
||||
- "${NODE_EXPORTER_PORT_OVERRIDE:-9100}:9100"
|
||||
command:
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
oceanbase:
|
||||
<<: *defaults
|
||||
image: oceanbase/oceanbase-ce:${OCEANBASE_VERSION:-4.3.3.1-106000012024110114}
|
||||
image: ${GLOBAL_REGISTRY:-}oceanbase/oceanbase-ce:${OCEANBASE_VERSION:-4.3.3.1-106000012024110114}
|
||||
environment:
|
||||
TZ: ${TZ:-UTC}
|
||||
MODE: slim
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
odoo:
|
||||
<<: *defaults
|
||||
image: odoo:${ODOO_VERSION:-19.0}
|
||||
image: ${GLOBAL_REGISTRY:-}odoo:${ODOO_VERSION:-19.0}
|
||||
depends_on:
|
||||
odoo-db:
|
||||
condition: service_healthy
|
||||
@@ -42,7 +42,7 @@ services:
|
||||
|
||||
odoo-db:
|
||||
<<: *defaults
|
||||
image: postgres:${POSTGRES_VERSION:-17-alpine}
|
||||
image: ${GLOBAL_REGISTRY:-}postgres:${POSTGRES_VERSION:-17-alpine}
|
||||
environment:
|
||||
- TZ=${TZ:-UTC}
|
||||
- POSTGRES_USER=${POSTGRES_USER:-odoo}
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
ollama:
|
||||
<<: *defaults
|
||||
image: ollama/ollama:${OLLAMA_VERSION:-0.12.6}
|
||||
image: ${GLOBAL_REGISTRY:-}ollama/ollama:${OLLAMA_VERSION:-0.12.6}
|
||||
ports:
|
||||
- "${OLLAMA_PORT_OVERRIDE:-11434}:11434"
|
||||
volumes:
|
||||
|
||||
@@ -12,7 +12,7 @@ services:
|
||||
# https://github.com/coze-dev/coze-studio/tree/main/docker
|
||||
|
||||
opencoze-info:
|
||||
image: alpine:latest
|
||||
image: ${GLOBAL_REGISTRY:-}alpine:latest
|
||||
environment:
|
||||
- TZ=${TZ:-UTC}
|
||||
command: >
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
db:
|
||||
<<: *defaults
|
||||
image: postgres:${POSTGRES_VERSION:-17}
|
||||
image: ${GLOBAL_REGISTRY:-}postgres:${POSTGRES_VERSION:-17}
|
||||
environment:
|
||||
TZ: ${TZ:-UTC}
|
||||
POSTGRES_USER: ${POSTGRES_USER:-opencut}
|
||||
@@ -36,7 +36,7 @@ services:
|
||||
|
||||
redis:
|
||||
<<: *defaults
|
||||
image: redis:${REDIS_VERSION:-7-alpine}
|
||||
image: ${GLOBAL_REGISTRY:-}redis:${REDIS_VERSION:-7-alpine}
|
||||
ports:
|
||||
- "${REDIS_PORT_OVERRIDE:-6379}:6379"
|
||||
healthcheck:
|
||||
@@ -56,7 +56,7 @@ services:
|
||||
|
||||
serverless-redis-http:
|
||||
<<: *defaults
|
||||
image: hiett/serverless-redis-http:${SERVERLESS_REDIS_HTTP_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}hiett/serverless-redis-http:${SERVERLESS_REDIS_HTTP_VERSION:-latest}
|
||||
ports:
|
||||
- "${SERVERLESS_REDIS_HTTP_PORT_OVERRIDE:-8079}:80"
|
||||
environment:
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
openlist:
|
||||
<<: *defaults
|
||||
image: openlistteam/openlist:${OPENLIST_VERSION:-latest}
|
||||
image: ${GLOBAL_REGISTRY:-}openlistteam/openlist:${OPENLIST_VERSION:-latest}
|
||||
ports:
|
||||
- "${OPENLIST_PORT_OVERRIDE:-5244}:5244"
|
||||
volumes:
|
||||
|
||||
@@ -9,7 +9,7 @@ x-defaults: &defaults
|
||||
services:
|
||||
opensearch:
|
||||
<<: *defaults
|
||||
image: opensearchproject/opensearch:${OPENSEARCH_VERSION:-2.19.0}
|
||||
image: ${GLOBAL_REGISTRY:-}opensearchproject/opensearch:${OPENSEARCH_VERSION:-2.19.0}
|
||||
environment:
|
||||
TZ: ${TZ:-UTC}
|
||||
cluster.name: ${CLUSTER_NAME:-opensearch-cluster}
|
||||
@@ -48,7 +48,7 @@ services:
|
||||
|
||||
opensearch-dashboards:
|
||||
<<: *defaults
|
||||
image: opensearchproject/opensearch-dashboards:${OPENSEARCH_DASHBOARDS_VERSION:-2.19.0}
|
||||
image: ${GLOBAL_REGISTRY:-}opensearchproject/opensearch-dashboards:${OPENSEARCH_DASHBOARDS_VERSION:-2.19.0}
|
||||
ports:
|
||||
- "${OPENSEARCH_DASHBOARDS_PORT_OVERRIDE:-5601}:5601"
|
||||
environment:
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user