Advertisement
schergr

docker compose file for n8n using FFMPEG container

Dec 16th, 2024
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.30 KB | Source Code | 0 0
  1. services:
  2.   n8n:
  3.     image: n8nffmpeg
  4.     restart: always
  5.     ports:
  6.      - 5678:5678
  7.     environment:
  8.      - NODE_ENV=production
  9.       - NODE_FUNCTION_ALLOW_BUILTIN=*
  10.       - NODE_FUNCTION_ALLOW_EXTERNAL=*
  11.     volumes:
  12.      - n8n_data:/home/node/.n8n
  13.  
  14. volumes:
  15.   n8n_data:
  16.     external: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement