All checks were successful
Build, Push and Redeploy Docker Image / build-and-push (push) Successful in 5m43s
28 lines
709 B
YAML
28 lines
709 B
YAML
services:
|
|
n8n-test:
|
|
image: git.home/drholy/n8n-ffmpeg-proxy:latest
|
|
container_name: n8n-test
|
|
environment:
|
|
- GENERIC_TIMEZONE=Europe/Amsterdam
|
|
- NODE_ENV=production
|
|
- N8N_SECURE_COOKIE=false
|
|
- N8N_TRUST_PROXY=true
|
|
- N8N_DIAGNOSTICS_ENABLED=false
|
|
- N8N_TELEMETRY_DISABLED=true
|
|
- SOCKS_IP=192.168.31.240
|
|
- N8N_PORT=5678
|
|
- NODE_FUNCTION_ALLOW_EXTERNAL=*
|
|
- NODE_OPTIONS=--dns-result-order=ipv4first
|
|
ports:
|
|
- 7778:5678
|
|
volumes:
|
|
- n8n-data-test:/home/node/.n8n
|
|
- /srv/downloads:/music
|
|
cap_add:
|
|
- NET_ADMIN
|
|
restart: unless-stopped
|
|
privileged: true
|
|
|
|
volumes:
|
|
n8n-data-test:
|
|
name: n8n-data-test |