paperless-ngx/docker/compose/docker-compose.ci-test.yml
luzpaz 0232b06ae8 Fixes various typos
Found via `codespell -q 3 -S "*.har,*.pdf,*.ts,./src/locale,./src-ui/src/locale,./docs/changelog.md,./src-ui/package-lock.json" -L criterias`
2024-01-08 14:40:19 +00:00

28 lines
942 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 necessary containers with the
# correct networking for the tests
version: "3.7"
services:
gotenberg:
image: docker.io/gotenberg/gotenberg:7.10
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/.*"
- "--log-level=warn"
- "--log-format=text"
tika:
image: ghcr.io/paperless-ngx/tika:latest
hostname: tika
container_name: tika
network_mode: host
restart: unless-stopped