docker compose

This commit is contained in:
Oliver
2025-08-06 14:53:27 -03:00
parent b79b15b0ee
commit 2f0d7e7d31
7 changed files with 51 additions and 45 deletions

13
docker-compose.yml Normal file
View File

@@ -0,0 +1,13 @@
services:
n8n:
image: docker.odoo4projects.com/od8n/n8n:latest
container_name: n8n
ports:
- "5678:5678"
volumes:
- ./data/.n8n:/home/node/.n8n
environment:
- N8N_BASIC_AUTH_ACTIVE=true
- N8N_BASIC_AUTH_USER=admin
- N8N_BASIC_AUTH_PASSWORD=secret
restart: unless-stopped