Workflow automation tool on FreeBSD.
services:
n8n:
image: ghcr.io/daemonless/n8n:latest
container_name: n8n
environment:
- N8N_ENCRYPTION_KEY=your-encryption-key-here
- PUID=1000
- PGID=1000
- TZ=UTC
volumes:
- /path/to/containers/n8n:/config
ports:
- 5678:5678
restart: unless-stopped
podman run -d --name n8n \
-p 5678:5678 \
-e N8N_ENCRYPTION_KEY=your-encryption-key-here \
-e PUID=@PUID@ \
-e PGID=@PGID@ \
-e TZ=@TZ@ \
-v /path/to/containers/n8n:/config \
ghcr.io/daemonless/n8n:latest
Access at: http://localhost:5678
- name: Deploy n8n
containers.podman.podman_container:
name: n8n
image: ghcr.io/daemonless/n8n:latest
state: started
restart_policy: always
env:
N8N_ENCRYPTION_KEY: "your-encryption-key-here"
PUID: "@PUID@"
PGID: "@PGID@"
TZ: "@TZ@"
ports:
- "5678:5678"
volumes:
- "/path/to/containers/n8n:/config"
| Variable |
Default |
Description |
N8N_ENCRYPTION_KEY |
your-encryption-key-here |
Encryption key for credentials (keep safe!) |
PUID |
1000 |
User ID for the application process |
PGID |
1000 |
Group ID for the application process |
TZ |
UTC |
Timezone for the container |
| Path |
Description |
/config |
Configuration directory (database, workflows) |
| Port |
Protocol |
Description |
5678 |
TCP |
Web UI |
- Architectures: amd64
- User:
bsd (UID/GID set via PUID/PGID)
- Base: Built on
ghcr.io/daemonless/base (FreeBSD)