mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00

* Replaces references to docker-compose (the v1 executable) with docker compose (the v2 plugin) as well as fixing up some referenes between the tool vs the command * Update docs/setup.md Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com> * Replaces references to docker-compose (the v1 executable) with docker compose (the v2 plugin) as well as fixing up some referenes between the tool vs the command --------- Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com>
26 lines
886 B
YAML
26 lines
886 B
YAML
# Docker Compose file for running paperless testing with actual gotenberg
|
|
# and Tika containers for a more end to end test of the Tika related functionality
|
|
# Can be used locally or by the CI to start the nessecary containers with the
|
|
# correct networking for the tests
|
|
|
|
version: "3.7"
|
|
services:
|
|
gotenberg:
|
|
image: docker.io/gotenberg/gotenberg:7.8
|
|
hostname: gotenberg
|
|
container_name: gotenberg
|
|
network_mode: host
|
|
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: ghcr.io/paperless-ngx/tika:latest
|
|
hostname: tika
|
|
container_name: tika
|
|
network_mode: host
|
|
restart: unless-stopped
|