mirror of
https://github.com/Crocmagnon/ansible.git
synced 2024-12-21 21:41:57 +01:00
This commit is contained in:
parent
31f901608c
commit
96a3245198
4 changed files with 27 additions and 2 deletions
|
@ -18,6 +18,7 @@
|
|||
- import_playbook: portainer.yaml # noqa: name[play]
|
||||
- import_playbook: privatebin.yaml # noqa: name[play]
|
||||
- import_playbook: shortener.yaml # noqa: name[play]
|
||||
- import_playbook: stirling-pdf.yaml # noqa: name[play]
|
||||
- import_playbook: test_headers.yaml # noqa: name[play]
|
||||
- import_playbook: voice-pipeline.yaml # noqa: name[play]
|
||||
- import_playbook: wallabag.yaml # noqa: name[play]
|
||||
|
|
|
@ -272,10 +272,10 @@ aio.augendre.info {
|
|||
}
|
||||
}
|
||||
|
||||
cloud-old.augendre.info {
|
||||
stirlingpdf.augendre.info {
|
||||
import common_headers
|
||||
import internal
|
||||
reverse_proxy localhost:9999
|
||||
reverse_proxy localhost:9012
|
||||
}
|
||||
|
||||
#########################################################
|
||||
|
|
13
playbooks/apps/files/stirling-pdf/docker-compose.yaml
Normal file
13
playbooks/apps/files/stirling-pdf/docker-compose.yaml
Normal file
|
@ -0,0 +1,13 @@
|
|||
services:
|
||||
stirling-pdf:
|
||||
image: stirlingtools/stirling-pdf:latest
|
||||
ports:
|
||||
- '127.0.0.1:9012:8080'
|
||||
volumes:
|
||||
- ./trainingData:/usr/share/tessdata # Required for extra OCR languages
|
||||
- ./extraConfigs:/configs
|
||||
environment:
|
||||
- DOCKER_ENABLE_SECURITY=true
|
||||
- SECURITY_ENABLE_LOGIN=true
|
||||
- INSTALL_BOOK_AND_ADVANCED_HTML_OPS=false
|
||||
- LANGS=en_GB,fr_FR,en_US
|
11
playbooks/apps/stirling-pdf.yaml
Normal file
11
playbooks/apps/stirling-pdf.yaml
Normal file
|
@ -0,0 +1,11 @@
|
|||
---
|
||||
- name: Stirling-pdf
|
||||
hosts: servers
|
||||
gather_facts: false
|
||||
tasks:
|
||||
- name: Docker
|
||||
ansible.builtin.include_role:
|
||||
name: docker
|
||||
|
||||
vars:
|
||||
docker_app_name: stirling-pdf
|
Loading…
Reference in a new issue