update modules/kbase: mod 14 del 1 files

This commit is contained in:
jack ning
2025-05-17 10:43:28 +08:00
parent 8acf3dd56a
commit 28c584d4a3
22 changed files with 146 additions and 47 deletions

View File

@@ -28,6 +28,33 @@ services:
interval: 10s
timeout: 5s
retries: 5
# ActiveMQ Artemis 消息队列
# http://localhost:18161/console使用 admin/admin 作为登录凭据
bytedesk-artemis:
image: apache/activemq-artemis:latest
container_name: artemis-bytedesk
environment:
- ARTEMIS_USER=admin
- ARTEMIS_PASSWORD=admin
- ANONYMOUS_LOGIN=false
- EXTRA_ARGS=--http-host 0.0.0.0 --relax-jolokia
ports:
- "16161:61616" # JMS
- "16162:61617" # AMQP
- "18161:8161" # Web Console
- "15672:5672" # AMQP
- "16163:61613" # STOMP
- "11883:1883" # MQTT
volumes:
- artemis_data:/var/lib/artemis/data
networks:
- bytedesk-network
healthcheck:
test: ["CMD", "curl", "--fail", "-u", "admin:admin", "http://localhost:8161/console/jolokia/"]
interval: 30s
timeout: 10s
retries: 5
bytedesk-ollama:
image: ollama/ollama:latest
@@ -84,6 +111,8 @@ volumes:
name: bytedesk_ollama_models
elasticsearch_data:
name: bytedesk_elasticsearch_data
artemis_data:
name: bytedesk_artemis_data
networks:
bytedesk-network: