Unlock the power of self-hosted cloud automation with this comprehensive guide to setting up n8n using Docker Compose YML. Whether building workflows or streamlining integrations, this tutorial has you covered. Learn how to deploy n8n in the cloud, enabling seamless automation tailored to your needs. Perfect for enthusiasts and professionals alike, this video empowers you to take complete control of your automation infrastructure.
💡 What You’ll Learn:
- How to configure Docker Compose YML for n8n.
- Setting up cloud-based workflows for self-hosted environments.
- Automating and integrating tasks effortlessly.
🔧 What You’ll Need:
🎯 Don’t forget to like, comment, and subscribe for more automation tutorials and tips! Let’s take your workflows to the next level. 🚀
version: "3.1"
services:
n8n:
image: n8nio/n8n:latest
restart: always
ports:
- "5678:5678"
environment:
N8N_HOST: cloud.smollfut.com
N8N_PORT: 5678
WEBHOOK_TUNNEL_URL: https://cloud.smollfut.com
N8N_BASIC_AUTH_ACTIVE: "true"
N8N_BASIC_AUTH_USER: ${N8N_BASIC_AUTH_USER}
N8N_BASIC_AUTH_PASSWORD: ${N8N_BASIC_AUTH_PASSWORD}
networks:
nginxproxymanager_default:
volumes:
- n8n_data:/home/node/.n8n
volumes:
n8n_data:
networks:
nginxproxymanager_default:
external: true