Unknown error: Pipedrive Trigger: Validation failed

Hi!

I’m running a n8n docker image on a digital ocean docker droplet. It is hosted on a public IP address without a domain. I’m having trouble getting my pipedrive trigger to work. Its giving me this error:

Problem running workflow
UNKNOWN ERROR - check the detailed error for more information
Show Details
Pipedrive Trigger: Validation failed

The same credentials are working for the pipedrive CRUD node.

Here is my docker-compose.yml file:

version: "3"

services:
  traefik:
    image: "traefik"
    restart: always
    command:
      # - "n8n start --tunnel"
      - "--api=true"
      - "--api.insecure=true"
      - "--providers.docker=true"
      - "--providers.docker.exposedbydefault=false"
      - "--entrypoints.web.address=:80"
      - "--entrypoints.web.http.redirections.entryPoint.to=websecure"
      - "--entrypoints.web.http.redirections.entrypoint.scheme=https"
      - "--entrypoints.websecure.address=:443"
      - "--certificatesresolvers.mytlschallenge.acme.tlschallenge=true"
      - "--certificatesresolvers.mytlschallenge.acme.email=${SSL_EMAIL}"
      - "--certificatesresolvers.mytlschallenge.acme.storage=/letsencrypt/acme.json"
    ports:
      - "80:80"
      - "443:443"
    volumes:
      - ${DATA_FOLDER}/letsencrypt:/letsencrypt
      - /var/run/docker.sock:/var/run/docker.sock:ro

  n8n:
    image: n8nio/n8n
    restart: always
    ports:
      - "5678:5678"
    labels:
      - traefik.enable=true
      - traefik.http.routers.n8n.rule=Host(`${SUBDOMAIN}.${DOMAIN_NAME}`)
      - traefik.http.routers.n8n.tls=true
      - traefik.http.routers.n8n.entrypoints=web,websecure
      - traefik.http.routers.n8n.tls.certresolver=mytlschallenge
      - traefik.http.middlewares.n8n.headers.SSLRedirect=true
      - traefik.http.middlewares.n8n.headers.STSSeconds=315360000
      - traefik.http.middlewares.n8n.headers.browserXSSFilter=true
      - traefik.http.middlewares.n8n.headers.contentTypeNosniff=true
      - traefik.http.middlewares.n8n.headers.forceSTSHeader=true
      - traefik.http.middlewares.n8n.headers.SSLHost=${DOMAIN_NAME}
      - traefik.http.middlewares.n8n.headers.STSIncludeSubdomains=true
      - traefik.http.middlewares.n8n.headers.STSPreload=true
    environment:
      - N8N_BASIC_AUTH_ACTIVE=true
      - N8N_BASIC_AUTH_USER
      - N8N_BASIC_AUTH_PASSWORD
      - N8N_HOST=159.223.230.242
      - N8N_PORT=5678
      - N8N_PROTOCOL=http
      - NODE_ENV=production
      - WEBHOOK_URL=<public IP address>
      - GENERIC_TIMEZONE=${GENERIC_TIMEZONE}
    volumes:
      - ${DATA_FOLDER}/.n8n:/home/node/.n8n

And here is my .env file:

# Folder where data should be saved
DATA_FOLDER=/root/n8n/

# The top level domain to serve from
#DOMAIN_NAME=

# The subdomain to serve from
#SUBDOMAIN=

# DOMAIN_NAME and SUBDOMAIN combined decide where n8n will be reachable from
# above example would result in: https://n8n.example.com

# The user name to use for authentication - IMPORTANT ALWAYS CHANGE!
N8N_BASIC_AUTH_USER=user

# The password to use for authentication - IMPORTANT ALWAYS CHANGE!
N8N_BASIC_AUTH_PASSWORD=password

# Optional timezone to set which gets used by Cron-Node by default
# If not set New York time will be used
GENERIC_TIMEZONE=Europe/Berlin

# The email address to use for the SSL certificate creation
[email protected]

I tried adding:

command: “n8n start --tunnel”

To the yml file, but then I get the following error:

= 'n8n start --tunnel' is not a Traefik command: assuming shell execution.
/entrypoint.sh: exec: line 18: n8n start --tunnel: not found
= 'n8n start --tunnel' is not a Traefik command: assuming shell execution.
/entrypoint.sh: exec: line 18: n8n start --tunnel: not found
= 'n8n start --tunnel' is not a Traefik command: assuming shell execution.
/entrypoint.sh: exec: line 18: n8n start --tunnel: not found
= 'n8n start --tunnel' is not a Traefik command: assuming shell execution.
/entrypoint.sh: exec: line 18: n8n start --tunnel: not found
= 'n8n start --tunnel' is not a Traefik command: assuming shell execution.
/entrypoint.sh: exec: line 18: n8n start --tunnel: not found
= 'n8n start --tunnel' is not a Traefik command: assuming shell execution.
/entrypoint.sh: exec: line 18: n8n start --tunnel: not found
= 'n8n start --tunnel' is not a Traefik command: assuming shell execution.
/entrypoint.sh: exec: line 18: n8n start --tunnel: not found
= 'n8n start --tunnel' is not a Traefik command: assuming shell execution.
/entrypoint.sh: exec: line 18: n8n start --tunnel: not found
= 'n8n start --tunnel' is not a Traefik command: assuming shell execution.
/entrypoint.sh: exec: line 18: n8n start --tunnel: not found
= 'n8n start --tunnel' is not a Traefik command: assuming shell execution.
/entrypoint.sh: exec: line 18: n8n start --tunnel: not found

What am I doing wrong?

Cheers!

Hi @mark_de_jonge, it looks like you’re running the n8n start --tunnel command in your traefik container. Could you try running it in your n8n container instead?

Hi @MutedJam,

Thanks for your reply! Where exactly should I add it? I don’t see a “command:” section under n8n in the yml file.

Cheers!