Skip to content

Instantly share code, notes, and snippets.

@horaciod
Created February 27, 2025 16:25
Show Gist options
  • Save horaciod/85482d1e9d5bdac2760d11f01a475983 to your computer and use it in GitHub Desktop.
Save horaciod/85482d1e9d5bdac2760d11f01a475983 to your computer and use it in GitHub Desktop.
docker para n8n
services:
n8n:
stdin_open: true
tty: true
container_name: n8n
ports:
- 5678:5678
volumes:
- n8n_data:/home/node/.n8n
image: docker.n8n.io/n8nio/n8n
environment:
- N8N_SECURE_COOKIE=false #Disable SSL
- GENERIC_TIMEZONE=Europe/Madrid
- TZ=Europe/Madrid
volumes:
n8n_data:
external: false
name: n8n_data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment