Cannot register self-hosted n8n

Describe the problem/error/question

Hello, i cant register my instance
i dont have a Unlock or Enter Key button

Information on your n8n setup

repository: n8nio/n8n
tag: “2.5.0”

n8n:
image: “${IMAGE2}”
restart: always
ports:
- “127.0.0.1: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
- traefik.http.routers.n8n.middlewares=n8n@docker
environment:
- N8N_HOST=${SUBDOMAIN}.${DOMAIN_NAME}
- N8N_PORT=5678
- N8N_PROTOCOL=https
- NODE_ENV=production
- WEBHOOK_URL=``https://$``{SUBDOMAIN}.${DOMAIN_NAME}/
- GENERIC_TIMEZONE=Europe/Moscow
volumes:
- n8n_data:/home/node/.n8n

i use official image - n8nio/n8n - Docker Image

Hi @MaidDragon

Starting from n8n v2, the license/instance registration has been removed from the Community Edition.
Therefore, the Unlock, Enter Key, or Register button no longer exists. “Cannot register self-hosted n8n” is just a telemetry warning; you can ignore it or disable it with N8N_DIAGNOSTICS_ENABLED=false.

Hi @MaidDragon Welcome!

try enabling it by updating your Docker Image from 2.5.0 to the latest n8nio/n8n tag and recheck Settings > Usage and let me know if that works.

Hi @MaidDragon

Open your docker-compose.yml file.
• Change the image tag to latest (e.g., image: n8nio/n8n:latest).
• Run docker-compose pull to download the valid image.
• Run docker-compose up -d to recreate the container with the updated version.
Helpful links :