From 694ad53ef90f2247bae67e5b0f0d2773b76d85fe Mon Sep 17 00:00:00 2001 From: Trenton Holmes Date: Sun, 9 Oct 2022 17:55:09 -0700 Subject: [PATCH 1/2] Updates Gotenberg container to the latest --- .github/workflows/ci.yml | 2 +- docker/compose/docker-compose.mariadb-tika.yml | 7 ++++--- docker/compose/docker-compose.postgres-tika.yml | 2 +- docker/compose/docker-compose.sqlite-tika.yml | 2 +- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 858a0a513..ae2e30d6e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -88,7 +88,7 @@ jobs: ports: - "9998:9998/tcp" gotenberg: - image: docker.io/gotenberg/gotenberg:7.4 + image: docker.io/gotenberg/gotenberg:7.6 ports: - "3000:3000/tcp" env: diff --git a/docker/compose/docker-compose.mariadb-tika.yml b/docker/compose/docker-compose.mariadb-tika.yml index 42ad74051..b3699e4d7 100644 --- a/docker/compose/docker-compose.mariadb-tika.yml +++ b/docker/compose/docker-compose.mariadb-tika.yml @@ -85,10 +85,11 @@ services: PAPERLESS_TIKA_ENDPOINT: http://tika:9998 gotenberg: - image: docker.io/gotenberg/gotenberg:7.4 + image: docker.io/gotenberg/gotenberg:7.6 restart: unless-stopped - environment: - CHROMIUM_DISABLE_ROUTES: 1 + command: + - "gotenberg" + - "--chromium-disable-routes=true" tika: image: ghcr.io/paperless-ngx/tika:latest diff --git a/docker/compose/docker-compose.postgres-tika.yml b/docker/compose/docker-compose.postgres-tika.yml index 39bb67ccf..c4333ad35 100644 --- a/docker/compose/docker-compose.postgres-tika.yml +++ b/docker/compose/docker-compose.postgres-tika.yml @@ -77,7 +77,7 @@ services: PAPERLESS_TIKA_ENDPOINT: http://tika:9998 gotenberg: - image: docker.io/gotenberg/gotenberg:7.4 + image: docker.io/gotenberg/gotenberg:7.6 restart: unless-stopped command: - "gotenberg" diff --git a/docker/compose/docker-compose.sqlite-tika.yml b/docker/compose/docker-compose.sqlite-tika.yml index 7ff8327ba..a7b9a4ebe 100644 --- a/docker/compose/docker-compose.sqlite-tika.yml +++ b/docker/compose/docker-compose.sqlite-tika.yml @@ -65,7 +65,7 @@ services: PAPERLESS_TIKA_ENDPOINT: http://tika:9998 gotenberg: - image: docker.io/gotenberg/gotenberg:7.4 + image: docker.io/gotenberg/gotenberg:7.6 restart: unless-stopped command: - "gotenberg" From 11ab469a392936661cc7c9be0e4a37734cb8d6d8 Mon Sep 17 00:00:00 2001 From: Trenton Holmes Date: Sun, 9 Oct 2022 18:03:29 -0700 Subject: [PATCH 2/2] Updates a few more instances of the container --- docs/configuration.rst | 2 +- docs/troubleshooting.rst | 2 +- scripts/start_services.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/configuration.rst b/docs/configuration.rst index 367770e18..402a41761 100644 --- a/docs/configuration.rst +++ b/docs/configuration.rst @@ -538,7 +538,7 @@ requires are as follows: # ... gotenberg: - image: gotenberg/gotenberg:7.4 + image: gotenberg/gotenberg:7.6 restart: unless-stopped command: - "gotenberg" diff --git a/docs/troubleshooting.rst b/docs/troubleshooting.rst index 6d94d7100..0e8f6a682 100644 --- a/docs/troubleshooting.rst +++ b/docs/troubleshooting.rst @@ -125,7 +125,7 @@ If using docker-compose, this is achieved by the following configuration change .. code:: yaml gotenberg: - image: gotenberg/gotenberg:7.4 + image: gotenberg/gotenberg:7.6 restart: unless-stopped command: - "gotenberg" diff --git a/scripts/start_services.sh b/scripts/start_services.sh index 3d0addb55..97ef0cba7 100755 --- a/scripts/start_services.sh +++ b/scripts/start_services.sh @@ -2,5 +2,5 @@ docker run -p 5432:5432 -e POSTGRES_PASSWORD=password -v paperless_pgdata:/var/lib/postgresql/data -d postgres:13 docker run -d -p 6379:6379 redis:latest -docker run -p 3000:3000 -d gotenberg/gotenberg:7.4 +docker run -p 3000:3000 -d gotenberg/gotenberg:7.6 docker run -p 9998:9998 -d ghcr.io/paperless-ngx/tika:latest