Files
n8n-ffmpeg-proxy/docker-compose.yml
drholy fce2cad2fc
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 5m6s
remove some env
2026-01-25 17:26:24 +07:00

24 lines
433 B
YAML

services:
n8n:
build:
context: .
args:
- SOCKS_IP=192.168.31.240
container_name: n8n
environment:
# - N8N_HOST=n8n.home
- N8N_PORT=5678
- NODE_FUNCTION_ALLOW_EXTERNAL=*
ports:
- 5678:5678
volumes:
- n8n_data_test:/home/node/.n8n
cap_add:
- NET_ADMIN
restart: unless-stopped
privileged: true
volumes:
n8n_data_test:
name: n8n_data_test