{"id":210,"date":"2025-03-30T08:31:12","date_gmt":"2025-03-30T06:31:12","guid":{"rendered":"https:\/\/thewebsiteengineer.com\/?p=210"},"modified":"2025-03-30T12:47:05","modified_gmt":"2025-03-30T10:47:05","slug":"how-to-run-n8n-with-docker-compose-to-use-custom-npm-modules","status":"publish","type":"post","link":"https:\/\/thewebsiteengineer.com\/blog\/how-to-run-n8n-with-docker-compose-to-use-custom-npm-modules\/","title":{"rendered":"How to run n8n with docker compose to use custom NPM modules"},"content":{"rendered":"
Docker Compose provides a powerful way to run n8n with custom configurations and additional NPM modules. This guide will walk you through setting up a production-ready n8n instance using Docker Compose, complete with custom modules and advanced configurations.<\/p>\n
For a more basic setup using Docker without custom NPM modules, see How to install n8n on a Local Server and Access it Securely from Anywhere<\/a><\/p>\n Docker Compose becomes essential when you need to extend n8n’s capabilities with custom NPM modules. For example, in our implementation, we needed several specific tools:<\/p>\n By using Docker Compose, you can easily manage these dependencies in a reproducible way, ensuring that all necessary tools are properly installed and configured in your n8n environment. This approach offers flexibility to add any NPM packages you need for your specific automation workflows.<\/p>\n First, let’s create a proper directory structure for our n8n deployment:<\/p>\n The Dockerfile allows us to extend the base n8n image with custom NPM packages:<\/p>\n Create a comprehensive Important:<\/strong> The environment variable Make sure to include Create a .env file with your specific configurations:<\/p>\n Create the external volume for persistent data storage:<\/p>\n Start the n8n container with Docker Compose:<\/p>\n To update your n8n installation:<\/p>\n Regular backups are crucial. Here’s how to backup your n8n data:<\/p>\n To add new NPM modules, update your Dockerfile and rebuild:<\/p>\n Running n8n with Docker Compose provides a robust, scalable, and maintainable automation platform. This setup enables you to leverage custom NPM modules while maintaining a production-ready environment with proper security measures and backup procedures.<\/p>\n","protected":false},"excerpt":{"rendered":" Introduction Docker Compose provides a powerful way to run n8n with custom configurations and additional NPM modules. This guide will walk you through setting up a production-ready n8n instance using Docker Compose, complete with custom modules and advanced configurations. For a more basic setup using Docker without custom NPM modules, see How to install n8n … Read more<\/a><\/p>\n","protected":false},"author":4,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[12],"tags":[],"class_list":["post-210","post","type-post","status-publish","format-standard","hentry","category-tooling"],"yoast_head":"\nPrerequisites<\/h2>\n
\n
Why You Might Need to Use Docker Compose<\/h2>\n
\n
Project Structure Setup<\/h2>\n
mkdir n8n-docker\ncd n8n-docker\ntouch docker-compose.yml\ntouch Dockerfile\ntouch .env\n<\/code><\/pre>\n
Creating the Dockerfile<\/h2>\n
FROM n8nio\/n8n:latest\n\nUSER root\n\n# Install additional npm packages\nRUN npm install -g npm \\\n @tryfabric\/martian \\\n notion-to-md \\\n # Add other packages as needed\n\nUSER node\n<\/code><\/pre>\n
Docker Compose Configuration<\/h2>\n
docker-compose.yml<\/code> file that includes all necessary configurations:<\/p>\n
version: '3.8'\n\nservices:\n n8n:\n container_name: n8n\n build: .\n restart: always\n ports:\n - "5678:5678"\n environment:\n - NODE_FUNCTION_ALLOW_EXTERNAL=*\n - N8N_HOST=${N8N_HOST}\n - N8N_PORT=5678\n - N8N_PROTOCOL=https\n - NODE_ENV=production\n - WEBHOOK_URL=https:\/\/${N8N_WEBHOOK_URL}\/\n - N8N_ENCRYPTION_KEY=${N8N_ENCRYPTION_KEY}\n # Email configuration\n - N8N_EMAIL_MODE=${N8N_EMAIL_MODE}\n - N8N_SMTP_HOST=${N8N_SMTP_HOST}\n - N8N_SMTP_PORT=${N8N_SMTP_PORT}\n - N8N_SMTP_USER=${N8N_SMTP_USER}\n - N8N_SMTP_PASS=${N8N_SMTP_PASS}\n - N8N_SMTP_SENDER=${N8N_SMTP_SENDER}\n volumes:\n - n8n_data:\/home\/node\/.n8n\n - ${DATA_FOLDER}\/files:\/files\n networks:\n - n8n-network\n\nnetworks:\n n8n-network:\n driver: bridge\n\nvolumes:\n n8n_data:\n external: true\n<\/code><\/pre>\n
NODE_FUNCTION_ALLOW_EXTERNAL=*<\/code> is crucial for this setup to work properly. This setting allows n8n to use external NPM modules in your workflows. Without this configuration, any custom NPM packages installed in the Dockerfile will not be accessible within n8n functions.<\/p>\n
\n
NODE_FUNCTION_ALLOW_EXTERNAL=*<\/code> in your environment variables. This is a required setting when working with custom NPM modules, and your workflows may fail if this is not properly configured.<\/p>\n<\/blockquote>\n
Environment Configuration<\/h2>\n
# Base Configuration\nDATA_FOLDER=\/path\/to\/your\/data\nN8N_HOST=your-domain.com\nN8N_WEBHOOK_URL=your-domain.com\nN8N_ENCRYPTION_KEY=your-secure-encryption-key\n\n# Email Configuration\nN8N_EMAIL_MODE=smtp\nN8N_SMTP_HOST=smtp.provider.com\nN8N_SMTP_PORT=587\nN8N_SMTP_USER=your-smtp-user\nN8N_SMTP_PASS=your-smtp-password\nN8N_SMTP_SENDER=Your Name <name@domain.com>\n<\/code><\/pre>\n
Deployment Steps<\/h2>\n
1. Initialize the Volume<\/h3>\n
docker volume create n8n_data\n<\/code><\/pre>\n
2. Build and Deploy<\/h3>\n
docker compose up -d --build\n<\/code><\/pre>\n
Maintenance and Updates<\/h2>\n
Updating n8n<\/h3>\n
# Pull the latest images\ndocker compose pull\n\n# Rebuild and restart containers\ndocker compose down\ndocker compose up -d --build\n<\/code><\/pre>\n
Backup and Restore<\/h3>\n
# Backup\ndocker run --rm -v n8n_data:\/source -v $(pwd):\/backup alpine tar czf \/backup\/n8n-backup.tar.gz -C \/source .\n\n# Restore\ndocker run --rm -v n8n_data:\/target -v $(pwd):\/backup alpine sh -c "cd \/target && tar xzf \/backup\/n8n-backup.tar.gz"\n<\/code><\/pre>\n
Advanced Configurations<\/h2>\n
Custom NPM Modules<\/h3>\n
# Update Dockerfile with new packages\ndocker compose down\ndocker compose up -d --build\n<\/code><\/pre>\n
Troubleshooting<\/h2>\n
\n
docker compose logs n8n<\/code><\/li>\n
Security Best Practices<\/h2>\n
\n
Conclusion<\/h2>\n