initial whoogle docker-compose
This commit is contained in:
parent
104bce0159
commit
9658b488f5
56
whoogle.yml
Normal file
56
whoogle.yml
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
---
|
||||||
|
- name: whoogle
|
||||||
|
hosts: all
|
||||||
|
tasks:
|
||||||
|
|
||||||
|
- name: Create whoogle dir
|
||||||
|
ansible.builtin.file:
|
||||||
|
path: /home/docker/whoogle.{{inventory_hostname}}
|
||||||
|
owner: root
|
||||||
|
group: docker
|
||||||
|
state: directory
|
||||||
|
mode: '0770'
|
||||||
|
|
||||||
|
- name: Whoogle SearchEngine Docker Config
|
||||||
|
blockinfile:
|
||||||
|
path: /home/docker/whoogle.{{inventory_hostname}}/docker-compose.yml
|
||||||
|
create: yes
|
||||||
|
mode: 0440
|
||||||
|
owner: root
|
||||||
|
group: docker
|
||||||
|
marker: "# {mark} ANSIBLE MANAGED BLOCK"
|
||||||
|
block: |
|
||||||
|
version: "3.3"
|
||||||
|
services:
|
||||||
|
whoogle:
|
||||||
|
image: benbusby/whoogle-search:latest
|
||||||
|
restart: unless-stopped
|
||||||
|
networks:
|
||||||
|
- traefik
|
||||||
|
labels:
|
||||||
|
- traefik.enable=true
|
||||||
|
- traefik.http.routers.whoogle.rule=Host(`whoogle.{{inventory_hostname}}`)
|
||||||
|
- traefik.http.routers.whoogle.entrypoints=https
|
||||||
|
- traefik.http.routers.whoogle.middlewares=secHeaders@file
|
||||||
|
- traefik.http.services.whoogle.loadbalancer.server.port=9000
|
||||||
|
- traefik.http.routers.whoogle.service=whoogle
|
||||||
|
- traefik.http.routers.whoogle.tls=true
|
||||||
|
- traefik.http.routers.whoogle.tls.certresolver=letsencrypt
|
||||||
|
- traefik.http.middlewares.to-https.redirectscheme.scheme=https
|
||||||
|
# htpasswd -nb -B admin "PASSWORD" | cut -d ":" -f 2 | sed -e s/\\$/\\$\\$/g
|
||||||
|
- traefik.http.middlewares.auth.basicauth.users=admin:$$apr1$$M3diLTQ/$$HCIbrgRtFpUWqoQ9wJtXi1a
|
||||||
|
ports:
|
||||||
|
- 5000:5000
|
||||||
|
networks:
|
||||||
|
traefik:
|
||||||
|
external: true
|
||||||
|
backup: yes
|
||||||
|
notify: Restart whoogle
|
||||||
|
|
||||||
|
|
||||||
|
handlers:
|
||||||
|
|
||||||
|
- name: Restart whoogle
|
||||||
|
ansible.builtin.shell: docker-compose up -d
|
||||||
|
args:
|
||||||
|
chdir: /home/docker/whoogle.{{inventory_hostname}}
|
Loading…
Reference in New Issue
Block a user