forked from linuxserver/docker-papermerge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme-vars.yml
54 lines (47 loc) · 2.74 KB
/
readme-vars.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
---
# project information
project_name: papermerge
project_url: "https://www.papermerge.com/"
project_logo: "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/papermerge-icon.png"
project_blurb: |
[{{ project_name|capitalize }}]({{ project_url }}) is an open source document management system (DMS) primarily designed for archiving and retrieving your digital documents. Instead of having piles of paper documents all over your desk, office or drawers - you can quickly scan them and configure your scanner to directly upload to Papermerge DMS."
project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}"
# supported architectures
available_architectures:
- { arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
- { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
- { arch: "{{ arch_armhf }}", tag: "arm32v7-latest"}
# container parameters
common_param_env_vars_enabled: true
param_container_name: "{{ project_name }}"
param_usage_include_vols: true
param_volumes:
- { vol_path: "/config", vol_host_path: "</path/to/appdata/config>", desc: "Contains all relevant configuration files." }
- { vol_path: "/data", vol_host_path: "</path/to/appdata/data>", desc: "Storage location for all papermerge data files." }
param_usage_include_ports: true
param_ports:
- { external_port: "8000", internal_port: "8000", port_desc: "http gui" }
param_usage_include_env: true
param_env_vars:
- { env_var: "TZ", env_value: "America/New_York", desc: "Specify a timezone to use EG America/New_York"}
opt_param_usage_include_env: true
opt_param_env_vars:
- { env_var: "REDIS_URL", env_value: "", desc: "Specify an external redis instance to use. Can optionally include a port (`redis:6379`) and/or db (`redis/foo`). If left blank or not included, will use a built-in redis instance. If changed after initial setup will also require manual modification of /config/settings.py"}
# optional parameters
optional_block_1: false
optional_block_1_items: ""
# application setup block
app_setup_block_enabled: true
app_setup_block: |
Default login is admin:admin via the webui, accessible at http://SERVERIP:PORT
More info at [papermerge]({{ project_url }}).
If you need non-English OCR language support, you can use [this mod](https://github.com/linuxserver/docker-mods/tree/papermerge-multilangocr).
# changelog
changelogs:
- { date: "13.04.21:", desc: "Handle upstream stapler change" }
- { date: "13.03.21:", desc: "Fixed mglib dependency per issue 32"}
- { date: "25.02.21:", desc: "Updated dependencies for v2"}
- { date: "07.02.21:", desc: "Support external MySQL/PSQL DBs." }
- { date: "01.02.21:", desc: "Add redis." }
- { date: "09.12.20:", desc: "Fix locales." }
- { date: "08.08.20:", desc: "Initial Release." }