Skip to content

Commit

Permalink
Add dynamic compose for searxng
Browse files Browse the repository at this point in the history
  • Loading branch information
Lancelot-Enguerrand committed Dec 22, 2024
1 parent d78768d commit 6563299
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
5 changes: 3 additions & 2 deletions apps/searxng/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
"name": "SearXNG",
"available": true,
"exposable": true,
"dynamic_config": true,
"port": 8127,
"id": "searxng",
"tipi_version": 5,
"tipi_version": 6,
"version": "latest",
"categories": ["social"],
"description": "SearXNG is a free internet metasearch engine which aggregates results from various search services and databases. Users are neither tracked nor profiled.",
Expand All @@ -22,5 +23,5 @@
],
"supported_architectures": ["arm64", "amd64"],
"created_at": 1691943801422,
"updated_at": 1723566284000
"updated_at": 1734908664432
}
21 changes: 21 additions & 0 deletions apps/searxng/docker-compose.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"services": [
{
"name": "searxng",
"image": "searxng/searxng:latest",
"isMain": true,
"internalPort": 8080,
"environment": {
"BIND_ADDRESS": "0.0.0.0:8080",
"BASE_URL": "${APP_PROTOCOL:-http}://${APP_DOMAIN}/",
"SEARXNG_SECRET": "${SEARXNG_SECRET_KEY}"
},
"volumes": [
{
"hostPath": "${APP_DATA_DIR}/data",
"containerPath": "/etc/searxng"
}
]
}
]
}

0 comments on commit 6563299

Please sign in to comment.