mirror of
https://github.com/semantica-agi/semantica.git
synced 2026-08-29 04:26:20 +00:00
36 lines
697 B
YAML
36 lines
697 B
YAML
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
|
|
networks:
|
|
- semantica
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
semantica:
|
|
driver: bridge
|
|
|
|
volumes:
|
|
falkordb_data:
|