search engine docker

This commit is contained in:
Face
2025-09-20 20:11:45 +03:00
parent fe8c8230d1
commit 23e4535147
3 changed files with 77 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
services:
search-engine:
build:
context: ..
dockerfile: search-engine/Dockerfile
container_name: gurted-search-engine
network_mode: host
environment:
RUST_LOG: info
volumes:
- ./config.toml:/app/config/config.toml:ro
- ./search_indexes:/app/search_indexes
- ./certs:/app/certs:ro
restart: unless-stopped