Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5de37e394b | |||
| 1c44ad7b6a | |||
| 78412c0caf | |||
| 33eac94ddc | |||
| 65c6016534 | |||
| 3078f92193 | |||
| 590a4faf57 | |||
| 21022ad75d | |||
| e8d774d39b | |||
| 7200dba94d |
29
CHANGELOG.md
29
CHANGELOG.md
@ -2,4 +2,33 @@
|
|||||||
|
|
||||||
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
||||||
|
|
||||||
|
### [2.0.4](https://git.laurivan.com/Dev/ansible-role-paperless-ngx/compare/v2.0.3...v2.0.4) (2023-10-18)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* Import word documents. ([1c44ad7](https://git.laurivan.com/Dev/ansible-role-paperless-ngx/commit/1c44ad7b6ac557ba2b34cc28e332cf349c16b32f))
|
||||||
|
|
||||||
|
### [2.0.3](https://git.laurivan.com/Dev/ansible-role-paperless-ngx/compare/v2.0.2...v2.0.3) (2023-02-14)
|
||||||
|
|
||||||
|
### [2.0.2](https://git.laurivan.com/Dev/ansible-role-paperless-ngx/compare/v2.0.1...v2.0.2) (2023-02-14)
|
||||||
|
|
||||||
|
### [2.0.1](https://git.laurivan.com/Dev/ansible-role-paperless-ngx/compare/v2.0.0...v2.0.1) (2023-02-14)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* Reset postgres folder rights. ([21022ad](https://git.laurivan.com/Dev/ansible-role-paperless-ngx/commit/21022ad75def506fe87ff47f03ee74add986f9ee))
|
||||||
|
|
||||||
|
## [2.0.0](https://git.laurivan.com/Dev/ansible-role-paperless-ngx/compare/v1.0.1...v2.0.0) (2023-02-13)
|
||||||
|
|
||||||
|
|
||||||
|
### ⚠ BREAKING CHANGES
|
||||||
|
|
||||||
|
* Update to gotenberg 7.8
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* Update to gotenberg 7.8 ([7200dba](https://git.laurivan.com/Dev/ansible-role-paperless-ngx/commit/7200dba94d07963489924025bcea00ff78a53c2a))
|
||||||
|
|
||||||
### 1.0.1 (2022-12-12)
|
### 1.0.1 (2022-12-12)
|
||||||
|
|||||||
@ -5,9 +5,10 @@ paperless_admin_user: "admin"
|
|||||||
paperless_admin_password: "changeme"
|
paperless_admin_password: "changeme"
|
||||||
|
|
||||||
paperless_image_version_redis: "7"
|
paperless_image_version_redis: "7"
|
||||||
paperless_image_version_gotenberg: "7.4"
|
paperless_image_version_gotenberg: "7.9"
|
||||||
paperless_image_version_tika: "latest"
|
paperless_image_version_tika: "latest"
|
||||||
paperless_image_version_paperless: "latest"
|
paperless_image_version_paperless: "latest"
|
||||||
|
paperless_pull_images: "true"
|
||||||
|
|
||||||
paperless_setup_path: "~/paperless"
|
paperless_setup_path: "~/paperless"
|
||||||
|
|
||||||
|
|||||||
@ -46,4 +46,5 @@
|
|||||||
community.docker.docker_compose:
|
community.docker.docker_compose:
|
||||||
project_src: "{{ paperless_setup_path | expanduser }}"
|
project_src: "{{ paperless_setup_path | expanduser }}"
|
||||||
build: false
|
build: false
|
||||||
|
pull: "{{ paperless_pull_images }}"
|
||||||
become: false
|
become: false
|
||||||
|
|||||||
@ -18,10 +18,23 @@ services:
|
|||||||
- /etc/timezone:/etc/timezone:ro
|
- /etc/timezone:/etc/timezone:ro
|
||||||
- /etc/localtime:/etc/localtime:ro
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
|
||||||
{% if paperless_db_host == 'postgres' %}
|
{% if paperless_db_host == 'postgres' %}
|
||||||
# Postgres
|
# Postgres
|
||||||
#
|
#
|
||||||
|
postgres-init:
|
||||||
|
image: docker.io/library/postgres:{{ paperless_image_version_db }}
|
||||||
|
volumes:
|
||||||
|
- "{{ paperless_volume_db }}:/data"
|
||||||
|
entrypoint:
|
||||||
|
- sh
|
||||||
|
- -c
|
||||||
|
- |
|
||||||
|
chown -R 70:70 /data
|
||||||
|
|
||||||
postgres:
|
postgres:
|
||||||
|
depends_on:
|
||||||
|
postgres-init:
|
||||||
|
condition: service_completed_successfully
|
||||||
image: docker.io/library/postgres:{{ paperless_image_version_db }}
|
image: docker.io/library/postgres:{{ paperless_image_version_db }}
|
||||||
env_file:
|
env_file:
|
||||||
- "{{ paperless_setup_path | expanduser }}/env.db.conf"
|
- "{{ paperless_setup_path | expanduser }}/env.db.conf"
|
||||||
@ -52,7 +65,9 @@ services:
|
|||||||
image: "gotenberg/gotenberg:{{ paperless_image_version_gotenberg }}"
|
image: "gotenberg/gotenberg:{{ paperless_image_version_gotenberg }}"
|
||||||
command:
|
command:
|
||||||
- "gotenberg"
|
- "gotenberg"
|
||||||
- "--chromium-disable-routes=true"
|
- "--chromium-disable-javascript=true"
|
||||||
|
- "--chromium-allow-list=file:///tmp/.*"
|
||||||
|
- "--pdfengines-engines=pdftk,uno-pdfengine"
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
networks:
|
networks:
|
||||||
- paperless
|
- paperless
|
||||||
@ -61,9 +76,6 @@ services:
|
|||||||
#
|
#
|
||||||
tika:
|
tika:
|
||||||
image: "ghcr.io/paperless-ngx/tika:{{ paperless_image_version_tika }}"
|
image: "ghcr.io/paperless-ngx/tika:{{ paperless_image_version_tika }}"
|
||||||
command:
|
|
||||||
- "gotenberg"
|
|
||||||
# - "--chromium-disable-routes=true"
|
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
networks:
|
networks:
|
||||||
- paperless
|
- paperless
|
||||||
@ -84,9 +96,10 @@ services:
|
|||||||
- broker
|
- broker
|
||||||
- gotenberg
|
- gotenberg
|
||||||
- tika
|
- tika
|
||||||
{% if paperless_db_host == 'postgres' %}
|
{% if paperless_db_host == 'postgres' %}
|
||||||
- postgres
|
- postgres-init
|
||||||
{% endif %}
|
- postgres
|
||||||
|
{% endif %}
|
||||||
ports:
|
ports:
|
||||||
- "{{ paperless_port }}:8000"
|
- "{{ paperless_port }}:8000"
|
||||||
volumes:
|
volumes:
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user