You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
799 B
32 lines
799 B
# https://docs.searxng.org/admin/installation-docker.html#installation-docker
|
|
|
|
- name: Set up SearXNG
|
|
hosts: lotus-land-story
|
|
vars_files:
|
|
- vars.yml
|
|
tasks:
|
|
|
|
- name: Get docker network
|
|
community.docker.docker_network:
|
|
name: lotus_land_story
|
|
register: docker_network
|
|
|
|
- name: Run SearXNG
|
|
community.docker.docker_container:
|
|
restart: true
|
|
name: searxng
|
|
image: searxng/searxng:2024.1.17-7c80807bb
|
|
env:
|
|
SEARXNG_BASE_URL: https://search.{{ domain }}
|
|
restart_policy: unless-stopped
|
|
networks:
|
|
- name: lotus_land_story
|
|
etc_hosts:
|
|
host.docker.internal: host-gateway
|
|
|
|
handlers:
|
|
- name: Import restarts
|
|
ansible.builtin.import_tasks: restarts.yml
|
|
|
|
# vim: ft=yaml.ansible
|