-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
46 lines (40 loc) · 1.2 KB
/
compose.yaml
File metadata and controls
46 lines (40 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: n8n
x-daemonless:
title: "n8n"
icon: ":simple-n8n:"
category: "Utilities"
description: "Fair-code workflow automation platform with native AI capabilities — combine visual building with custom code and 400+ integrations."
upstream_url: "https://github.com/n8n-io/n8n"
web_url: "https://n8n.io/"
freshports_url: ""
user: "bsd"
mlock: false
upstream_binary: true
appjail: true
docs:
env:
PUID: "User ID for the application process"
PGID: "Group ID for the application process"
TZ: "Timezone for the container"
N8N_ENCRYPTION_KEY: "Encryption key for credentials (keep safe!)"
N8N_SECURE_COOKIE: "Set to false if accessing over HTTP without TLS"
volumes:
/config: "Configuration directory (database, workflows)"
ports:
5678: "Web UI"
services:
n8n:
image: ghcr.io/daemonless/n8n:latest
container_name: n8n
restart: unless-stopped
environment:
- N8N_ENCRYPTION_KEY=your-encryption-key-here
# Set to false if accessing over HTTP without TLS
#- N8N_SECURE_COOKIE=true
- PUID=1000
- PGID=1000
- TZ=UTC
volumes:
- /path/to/containers/n8n:/config
ports:
- "5678:5678"