From 1c2374120394a9b0e82ddc63ad8bc8d2c2da02d1 Mon Sep 17 00:00:00 2001 From: Gabriel Peralta Date: Wed, 23 Jul 2025 20:05:35 -0300 Subject: [PATCH] Create newt-pangolin --- templates/compose/newt-pangolin | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 templates/compose/newt-pangolin diff --git a/templates/compose/newt-pangolin b/templates/compose/newt-pangolin new file mode 100644 index 000000000..1e52330f9 --- /dev/null +++ b/templates/compose/newt-pangolin @@ -0,0 +1,19 @@ +# documentation: https://docs.fossorial.io/Getting%20Started/overview +# slogan: Pangolin tunnels your services to the internet so you can access anything from anywhere. +# tags: wireguard, reverse-proxy, zero-trust-network-access, open source +# logo: svgs/pangolin-logo.png + +services: + newt: + image: fosrl/newt + container_name: newt + restart: unless-stopped + environment: + - 'PANGOLIN_ENDPOINT=${PANGOLIN_ENDPOINT:-domain.tld}' + - 'NEWT_ID=${NEWT_ID}' + - 'NEWT_SECRET=${NEWT_SECRET}' + healthcheck: + test: ["CMD", "newt", "--version"] + interval: 5s + timeout: 20s + retries: 10