mirror of
https://github.com/semantica-agi/semantica.git
synced 2026-08-29 04:26:20 +00:00
Add Knowledge Explorer deployment templates
This commit is contained in:
+25
-1
@@ -1,11 +1,35 @@
|
||||
services:
|
||||
explorer:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile
|
||||
image: semantica-knowledge-explorer:latest
|
||||
environment:
|
||||
FALKORDB_HOST: falkordb
|
||||
FALKORDB_PORT: "6379"
|
||||
ALLOWED_ORIGINS: ${ALLOWED_ORIGINS:-http://localhost:8000,http://127.0.0.1:8000}
|
||||
depends_on:
|
||||
falkordb:
|
||||
condition: service_started
|
||||
ports:
|
||||
- "8000:8000"
|
||||
networks:
|
||||
- semantica
|
||||
restart: unless-stopped
|
||||
|
||||
falkordb:
|
||||
image: falkordb/falkordb:latest
|
||||
ports:
|
||||
- "6379:6379"
|
||||
volumes:
|
||||
- falkordb_data:/data
|
||||
restart: always
|
||||
networks:
|
||||
- semantica
|
||||
restart: unless-stopped
|
||||
|
||||
networks:
|
||||
semantica:
|
||||
driver: bridge
|
||||
|
||||
volumes:
|
||||
falkordb_data:
|
||||
|
||||
Reference in New Issue
Block a user