Skip to content

nodejs-typescript-classroom/n8n-docker-sample

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

n8n-docker-sample

This repository is for demo how to build a n8n with docker compose

what is n8n

An automation framework allow us to build workflow in visual way

setup

docker-compose file

services:

  n8n:
    image: docker.n8n.io/n8nio/n8n
    restart: always
    container_name: n8n-service
    environment:
      - N8N_BASIC_AUTH_ACTIVE=true
      - N8N_BASIC_AUTH_USER=${N8N_BASIC_AUTH_USER}
      - N8N_BASIC_AUTH_PASSWORD=${N8N_BASIC_AUTH_PASSWORD}
      - GENERIC_TIMEZONE=${GENERIC_TIMEZONE}
      - N8N_PORT=5678
      - NODE_ENV=production
    ports:
      - 5678:5678
    volumes:
      - ${DATA_FOLDER}/.n8n:/home/node/.n8n

data file permission

for setup purpose, all the configure records will be store in to local file

sudo chmod +R 777 data

workflow

auto-collect-youtube-video-flow

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published