-
Notifications
You must be signed in to change notification settings - Fork 349
feat: add Voy blueprint for self-hosted metasearch engine #729
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
LeoMartinDev
wants to merge
13
commits into
Dokploy:canary
Choose a base branch
from
LeoMartinDev:feat-add-voy-search-engine
base: canary
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
07e7d59
feat: add Voy blueprint for self-hosted metasearch engine
LeoMartinDev ca9426f
refactor(voy): migrate to template mounts and simplify docker compose
LeoMartinDev 0fd5ee4
fix(voy): mount searxng config volume and fix settings path
LeoMartinDev b2c2306
Update blueprints/voy/docker-compose.yml
LeoMartinDev 9a14ec7
Update blueprints/voy/template.toml
LeoMartinDev d491751
build(voy): pin docker images to specific versions
LeoMartinDev ed72f87
Merge branch 'feat-add-voy-search-engine' of github.com:LeoMartinDev/…
LeoMartinDev 03b489e
chore: remove duplicate "privacy" tag in meta.json
LeoMartinDev 79c0f8a
chore(voy): rename service and volume from app to voy
LeoMartinDev 949ace1
chore(voy): update docker image tag from specific commit to latest
LeoMartinDev ff5e5b2
chore(voy): update version tag in meta.json and docker-compose.yml to…
LeoMartinDev 324f345
feat: update voy to 2026.03.02-2
LeoMartinDev 032811c
Update voy to 2026.03.03-1
LeoMartinDev File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,57 @@ | ||
| ddddversion: "3.8" | ||
|
|
||
| services: | ||
| voy: | ||
| image: ghcr.io/leomartindev/voy:2026.03.03-1 | ||
| restart: unless-stopped | ||
| expose: | ||
| - "3000" | ||
| environment: | ||
| BUN_ENV: ${BUN_ENV} | ||
| DATABASE_URL: ${DATABASE_URL} | ||
| SEARXNG_URL: ${SEARXNG_URL} | ||
| BETTER_AUTH_SECRET: ${BETTER_AUTH_SECRET} | ||
| INSTANCE_NAME: ${INSTANCE_NAME} | ||
| SITE_URL: ${SITE_URL} | ||
| volumes: | ||
| - voy-data:/data | ||
| depends_on: | ||
| searxng: | ||
| condition: service_healthy | ||
|
|
||
| valkey: | ||
| image: valkey/valkey:8-alpine | ||
| restart: unless-stopped | ||
| command: valkey-server --save 30 1 --loglevel warning | ||
| volumes: | ||
| - valkey-data:/data | ||
| healthcheck: | ||
| test: ["CMD", "valkey-cli", "ping"] | ||
| interval: 5s | ||
| timeout: 5s | ||
| retries: 5 | ||
|
|
||
| searxng: | ||
| image: searxng/searxng:2026.3.1-162c04a1c | ||
| restart: unless-stopped | ||
| environment: | ||
| SEARXNG_SECRET: ${SEARXNG_SECRET} | ||
| UWSGI_WORKERS: 2 | ||
| UWSGI_THREADS: 2 | ||
| UWSGI_ENABLE_THREADS: true | ||
| volumes: | ||
| - ../files/searxng:/etc/searxng | ||
| - searxng-data:/var/cache/searxng | ||
| depends_on: | ||
| valkey: | ||
| condition: service_healthy | ||
| healthcheck: | ||
| test: ["CMD", "wget", "-q", "--spider", "http://localhost:8080/healthz"] | ||
| interval: 10s | ||
| timeout: 5s | ||
| retries: 5 | ||
|
|
||
| volumes: | ||
| voy-data: {} | ||
| valkey-data: {} | ||
| searxng-data: {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,51 @@ | ||
| [variables] | ||
| main_domain = "${domain}" | ||
| max_request_timeout = "1.8" | ||
|
|
||
| [config] | ||
| [[config.domains]] | ||
| serviceName = "voy" | ||
| port = 3000 | ||
| host = "${main_domain}" | ||
| path = "/" | ||
|
|
||
| [config.env] | ||
| BUN_ENV = "production" | ||
| DATABASE_URL = "/data/app.db" | ||
| SEARXNG_URL = "http://searxng:8080" | ||
| BETTER_AUTH_SECRET = "${password:64}" | ||
| SEARXNG_SECRET = "${password:32}" | ||
| INSTANCE_NAME = "Voy" | ||
| SITE_URL = "https://${main_domain}" | ||
|
|
||
| [[config.mounts]] | ||
| filePath = "/searxng/settings.yml" | ||
| content = """ | ||
| use_default_settings: true | ||
|
|
||
| server: | ||
| secret_key: "${SEARXNG_SECRET}" | ||
| image_proxy: false | ||
| limiter: false | ||
| public_instance: false | ||
| max_results: 20 | ||
|
|
||
| search: | ||
| autocomplete: duckduckgo | ||
| autocomplete_min: 3 | ||
| max_page: 1 | ||
| formats: | ||
| - json | ||
| categories: | ||
| - general | ||
| - images | ||
| - files | ||
|
|
||
| outgoing: | ||
| max_request_timeout: ${max_request_timeout} | ||
|
|
||
| enabled_plugins: [] | ||
|
|
||
| valkey: | ||
| url: valkey://valkey:6379/0 | ||
| """ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.