Merge branch 'main' into renovate/ghcr.io-linuxserver-radarr
All checks were successful
Lint on PR / Lint YAML files (pull_request) Successful in 10s
Deploy to Hosts / deploy (pull_request) Successful in 53s

This commit is contained in:
Matt Reeves 2024-09-15 15:17:13 -04:00
commit ef3b4ebfd5
2 changed files with 58 additions and 0 deletions

View file

@ -0,0 +1,11 @@
services:
actual_server:
container_name: actual
image: ghcr.io/actualbudget/actual-server:24.9.0
ports:
- '5006:5006'
environment:
- ACTUAL_PORT=5006
volumes:
- /docker/appdata/actual/data:/data
restart: unless-stopped

View file

@ -0,0 +1,47 @@
services:
broker:
image: docker.io/library/redis:7
restart: unless-stopped
volumes:
- redisdata:/data
webserver:
image: ghcr.io/paperless-ngx/paperless-ngx:2.12.0
restart: unless-stopped
depends_on:
- broker
- gotenberg
- tika
ports:
- "8000:8000"
volumes:
- data:/usr/src/paperless/data
- media:/usr/src/paperless/media
- /data/paperless/export:/usr/src/paperless/export
- /data/paperless/consume:/usr/src/paperless/consume
env_file: .env
environment:
PAPERLESS_REDIS: redis://broker:6379
PAPERLESS_TIKA_ENABLED: 1
PAPERLESS_TIKA_GOTENBERG_ENDPOINT: http://gotenberg:3000
PAPERLESS_TIKA_ENDPOINT: http://tika:9998
gotenberg:
image: docker.io/gotenberg/gotenberg:8.7
restart: unless-stopped
# The gotenberg chromium route is used to convert .eml files. We do not
# want to allow external content like tracking pixels or even javascript.
command:
- "gotenberg"
- "--chromium-disable-javascript=true"
- "--chromium-allow-list=file:///tmp/.*"
tika:
image: docker.io/apache/tika:latest
restart: unless-stopped
volumes:
data:
media:
redisdata: