mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-07 08:26:06 +00:00
add docker-compose for one-key deploy
This commit is contained in:
parent
8e75e56668
commit
4abc113aa0
1 changed files with 19 additions and 0 deletions
19
docker-compose.yml
Normal file
19
docker-compose.yml
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
version: '3.8'
|
||||
|
||||
services:
|
||||
memory_scope_main:
|
||||
build:
|
||||
context: ./
|
||||
environment:
|
||||
DASHSCOPE_API_KEY: "sk-0000000000"
|
||||
volumes:
|
||||
- ./config:/memory_scope_project/memoryscope/config
|
||||
|
||||
elasticsearch:
|
||||
image: docker.elastic.co/elasticsearch/elasticsearch:8.13.2
|
||||
ports:
|
||||
- "9200:9200"
|
||||
environment:
|
||||
discovery.type: "single-node"
|
||||
xpack.security.enabled: "false"
|
||||
xpack.license.self_generated.type: "trial"
|
||||
Loading…
Add table
Reference in a new issue