Created
February 27, 2025 16:25
-
-
Save horaciod/85482d1e9d5bdac2760d11f01a475983 to your computer and use it in GitHub Desktop.
docker para n8n
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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