Compare commits

...

2 Commits

Author SHA1 Message Date
65c6016534 chore(release): 2.0.2 2023-02-14 01:28:49 +01:00
3078f92193 chore: Add option to pull images and cleanup. 2023-02-14 01:28:39 +01:00
4 changed files with 8 additions and 4 deletions

View File

@ -2,6 +2,8 @@
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.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)

View File

@ -8,6 +8,7 @@ paperless_image_version_redis: "7"
paperless_image_version_gotenberg: "7.8"
paperless_image_version_tika: "latest"
paperless_image_version_paperless: "latest"
paperless_pull_images: "true"
paperless_setup_path: "~/paperless"

View File

@ -46,4 +46,5 @@
community.docker.docker_compose:
project_src: "{{ paperless_setup_path | expanduser }}"
build: false
pull: "{{ paperless_pull_images }}"
become: false

View File

@ -18,7 +18,7 @@ services:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
{% if paperless_db_host == 'postgres' %}
{% if paperless_db_host == 'postgres' %}
# Postgres
#
postgres-init:
@ -95,9 +95,9 @@ services:
- broker
- gotenberg
- tika
{% if paperless_db_host == 'postgres' %}
- postgres
{% endif %}
{% if paperless_db_host == 'postgres' %}
- postgres
{% endif %}
ports:
- "{{ paperless_port }}:8000"
volumes: