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