FIX: Changed all .yml to .yaml in orded to have the same way

This commit is contained in:
2025-08-28 12:35:48 +02:00
parent dc94b51647
commit fa1f342c95
16 changed files with 0 additions and 0 deletions

19
n8n/docker-compose.yaml Normal file
View File

@@ -0,0 +1,19 @@
services:
n8n:
image: docker.n8n.io/n8nio/n8n
container_name: n8n
restart: unless-stopped
ports:
- 5678:5678
env_file:
- .env
volumes:
- n8n_data:/home/node/.n8n
- ${PATH_TO_FILES}:/files
healthcheck:
test: ["CMD-SHELL", "wget --no-verbose --tries=1 --spider http://localhost:5678/healthz || exit 1"]
interval: 1m
timeout: 10s
retries: 3
volumes:
n8n_data: