From a81e83e16ba0b1b735c7fa0bc0ba82f3feb0e5cd Mon Sep 17 00:00:00 2001 From: Hardik Date: Thu, 4 Jun 2026 00:49:35 +0000 Subject: [PATCH] Add stirling pdf --- .gitignore | 3 +++ README.md | 6 +++++- stirling-pdf/docker-compose.yml | 9 +++++++++ 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 stirling-pdf/docker-compose.yml diff --git a/.gitignore b/.gitignore index bea60da..ee5ff98 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,6 @@ karakeep/data/ # dnscrypt cache dns/dnscrypt/cache/ + +# stirling pdf data +stirling-pdf/stirling-data diff --git a/README.md b/README.md index db9e151..1a7b54c 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,8 @@ Client ├── Vaultwarden :8000 ├── Forgejo :3000 ├── Karakeep :3000 - └── Resilio Sync :8888 + ├── Resilio Sync :8888 + └── Stirling pdf :8181 ``` ### DNS Chain @@ -64,6 +65,9 @@ Pangolin tunnel client. Creates an outbound tunnel to PMS1 (87.76.191.133), allowing Pangolin/Traefik to route `*.tunnel.pelagiamarine.com` traffic back to Voyager without any open inbound ports. +### Stirling pdf +Self hosted pdf toolbox + --- ## Host Network diff --git a/stirling-pdf/docker-compose.yml b/stirling-pdf/docker-compose.yml new file mode 100644 index 0000000..8c121bb --- /dev/null +++ b/stirling-pdf/docker-compose.yml @@ -0,0 +1,9 @@ +services: + stirling-pdf: + image: stirlingtools/stirling-pdf:latest + container_name: stirling-pdf + ports: + - '8181:8080' + volumes: + - ./stirling-data:/configs + restart: unless-stopped