16 lines
306 B
YAML
16 lines
306 B
YAML
|
---
|
||
|
- hosts: alpha
|
||
|
remote_user: ubuntu
|
||
|
become: yes
|
||
|
tasks:
|
||
|
- name: Pull latest Searx Repo patches
|
||
|
community.docker.docker_container:
|
||
|
name: searx
|
||
|
image: searx/searx
|
||
|
pull: yes
|
||
|
restart_policy: always
|
||
|
recreate: yes
|
||
|
ports:
|
||
|
- "8080:8080"
|
||
|
|