Issues with applying custom Environment Variables (n8n)

So I've been trying to get n8n runners to be enabled for my n8n installation, however, even though Tipi reports there is a User Config, the config doesn't appear to be getting applied. File: /runtipi/user-config/migrated/n8n-1/app.env Contents: N8N_RUNNERS_ENABLED=true When I /bin/sh into the container and run echo $N8N_RUNNERS_ENABLED the output is empty.
1 Reply
Nicolas
Nicolas4d ago
Hello, you need to pass it with the docker-compose.yml
services:
n8n-1:
environment:
- N8N_RUNNERS_ENABLED=true
services:
n8n-1:
environment:
- N8N_RUNNERS_ENABLED=true

Did you find this page helpful?