Files
tiny-webhook/docker-compose.yml
Cauê Faleiros 8af4bc9885
All checks were successful
Build and Deploy / build-and-push (push) Successful in 53s
fix: map new n8n webhook environment variables in docker-compose
2026-05-05 14:03:15 -03:00

26 lines
844 B
YAML

version: '3.8'
services:
middleware:
image: gitea.blyzer.com.br/blyzer/tiny-webhook:latest
ports:
# Maps port 3030 on your host to 3000 inside the container.
# Nginx Proxy Manager will point to YOUR_SERVER_IP:3030
- "3030:3000"
environment:
- PORT=${PORT:-3000}
- N8N_WEBHOOK_URL=${N8N_WEBHOOK_URL}
- N8N_WEBHOOK_STATUS=${N8N_WEBHOOK_STATUS}
- N8N_WEBHOOK_GRAPHS=${N8N_WEBHOOK_GRAPHS}
- N8N_WEBHOOK_STOCK=${N8N_WEBHOOK_STOCK}
- TINY_WEBHOOK_SECRET=${TINY_WEBHOOK_SECRET}
- N8N_AUTH_TOKEN=${N8N_AUTH_TOKEN}
- TINY_API_TOKEN=${TINY_API_TOKEN}
# Optional: If you use a shared Docker network for Nginx Proxy Manager, you can attach it here:
# networks:
# - nginx-proxy-manager-network
# networks:
# nginx-proxy-manager-network:
# external: true