Add searx deployment

This commit is contained in:
Marty Oehme 2021-10-23 15:30:31 +02:00
parent 27daf9031b
commit 1fae9f9a19
Signed by: Marty
GPG key ID: B7538B8F50A1C800
11 changed files with 211 additions and 0 deletions

View file

@ -0,0 +1,30 @@
version: '3.7'
services:
app:
image: {{ stack_image }}:{{ searx_version }}
networks:
- "{{ docker_swarm_public_network_name }}"
healthcheck:
test: ["CMD", "wget", "-q", "--spider", "http://localhost:8080"]
interval: 1m
timeout: 10s
retries: 3
start_period: 1m
environment:
- BIND_ADDRESS=0.0.0.0:8080
{% if server_domain is not undefined and not none %}
- "BASE_URL={{ (searx_use_https == True) | ternary('https', 'http') }}://{{ (subdomain_alias is not undefined and not none) | ternary(subdomain_alias, stack_name) }}.{{server_domain}}"
{% else %}
- "BASE_URL={{ (searx_use_https == True) | ternary('https', 'http') }}://localhost/{{ (subdomain_alias is not undefined and not none) | ternary(subdomain_alias, stack_name) }}"
{% endif %}
volumes:
- /etc/localtime:/etc/localtime:ro
- data:/etc/searx:rw
volumes:
data:
networks:
"{{ docker_swarm_public_network_name }}":
external: true

View file

@ -0,0 +1,38 @@
{
"@id": "{{ stack_name }}_upstream",
{% if server_domain is not undefined and not none %}
"match": [
{
"host": [
{% if subdomain_alias is not undefined and not none %}
"{{ subdomain_alias }}.{{ server_domain }}"
{% else %}
"{{ stack_name }}.{{ server_domain }}"
{% endif %}
]
}
],
{% else %}
"match": [
{
"path": [
{% if subdomain_alias is not undefined and not none %}
"/{{ subdomain_alias }}*"
{% else %}
"/{{ stack_name }}*"
{% endif %}
]
}
],
{% endif %}
"handle": [
{
"handler": "reverse_proxy",
"upstreams": [
{
"dial": "{{ stack_name }}_app:8080"
}
]
}
]
}