mirror of
https://github.com/n8n-io/n8n-nodes-starter.git
synced 2025-10-28 22:12:26 -05:00
20 lines
361 B
YAML
20 lines
361 B
YAML
version: "3"
|
|
|
|
services:
|
|
n8n:
|
|
image: n8n-custom-nodes
|
|
restart: unless-stopped
|
|
build:
|
|
dockerfile: ./docker/Dockerfile
|
|
context: .
|
|
ports:
|
|
- "5678:5678"
|
|
environment:
|
|
- GENERIC_TIMEZONE=${GENERIC_TIMEZONE}
|
|
- N8N_LOG_LEVEL=debug
|
|
volumes:
|
|
- n8n-data:/home/node/.n8n
|
|
|
|
volumes:
|
|
n8n-data:
|
|
name: n8n-data
|