mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-02 13:18:18 +00:00
Working example with docker-compose
Still need quite a bit of clean-up, but this adds a working docker-compose + Dockerfile setup
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
version: "3.9"
|
||||
services:
|
||||
web:
|
||||
build:
|
||||
context: .
|
||||
args:
|
||||
- PORT=8000
|
||||
ports:
|
||||
- "8000:8000"
|
||||
volumes:
|
||||
- .:/code
|
||||
- /home/saba/notes/:/data/notes/
|
||||
- /home/saba/embeddings/:/data/generated/
|
||||
- /home/saba/images/:/data/images/
|
||||
- /home/saba/ledger/:/data/ledger/
|
||||
- /home/saba/music/:/data/music/
|
||||
command: --host="0.0.0.0" --port=8000 -c=docker_sample_config.yml
|
||||
|
||||
Reference in New Issue
Block a user