Pre-built Docker image bundling n8n + Npilot + Chromium for instant browser automation workflows.
150
A production-ready Docker image that bundles n8n workflow automation with the Npilot community node for Playwright-powered browser automation. This image includes Chromium and all required dependencies — no additional setup needed.
docker run -d \
-p 5678:5678 \
--name n8n-npilot \
--shm-size=512m \
-e N8N_BASIC_AUTH_ACTIVE=true \
-e N8N_BASIC_AUTH_USER=admin \
-e N8N_BASIC_AUTH_PASSWORD=changeme \
YOUR_DOCKERHUB_USERNAME/n8n-npilot:latest
Access n8n at: http://localhost:5678
| Variable | Default | Description |
|---|---|---|
N8N_BASIC_AUTH_ACTIVE | true | Enable basic authentication |
N8N_BASIC_AUTH_USER | admin | Username for n8n login |
N8N_BASIC_AUTH_PASSWORD | changeme | Password for n8n login |
N8N_HOST | localhost | Hostname for webhooks |
BROWSER_MAX_SESSIONS | 5 | Max concurrent browser sessions |
BROWSER_DEFAULT_TTL_MINUTES | 5 | Session idle timeout (minutes) |
services:
n8n:
image: alee0510/n8n-npilot:latest
restart: unless-stopped
ports:
- "5678:5678"
environment:
- N8N_BASIC_AUTH_ACTIVE=true
- N8N_BASIC_AUTH_USER=admin
- N8N_BASIC_AUTH_PASSWORD=changeme
volumes:
- n8n_data:/home/node/.n8n
shm_size: "512mb"
deploy:
resources:
limits:
memory: 2g
volumes:
n8n_data:
The Npilot node provides 18 browser automation actions:
Navigation: Navigate, Go Back, Go Forward, Reload, Wait
Interaction: Click, Type, Select, Upload File
Extraction: Extract Text, Extract Attribute, Extract Table
Utilities: Take Screenshot, Evaluate JavaScript, Debug, Close Session
/dev/shm (configured via --shm-size)Browser crashes or hangs?
--shm-size to 1gb or higherBROWSER_MAX_SESSIONS if running low on memorySession timeout errors?
BROWSER_DEFAULT_TTL_MINUTESPermission errors?
node (UID 1000)Ali Muksin
Email: [email protected]
GitHub: @alee0510
Tags: n8n, automation, browser-automation, playwright, chromium, web-scraping, rpa, workflow
Content type
Image
Digest
sha256:b092c8767…
Size
724.1 MB
Last updated
4 months ago
docker pull alee0510/n8n-npilot:0.1.6