Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 590a4faf57 | |||
| 21022ad75d |
@@ -2,6 +2,13 @@
|
||||
|
||||
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.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)
|
||||
|
||||
|
||||
|
||||
@@ -21,7 +21,20 @@ services:
|
||||
{% if paperless_db_host == '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:
|
||||
depends_on:
|
||||
postgres-init:
|
||||
condition: service_completed_successfully
|
||||
image: docker.io/library/postgres:{{ paperless_image_version_db }}
|
||||
env_file:
|
||||
- "{{ paperless_setup_path | expanduser }}/env.db.conf"
|
||||
|
||||
Reference in New Issue
Block a user