mirror of
https://gitlab.sectorq.eu/home/docker-compose.git
synced 2025-10-29 01:30:08 +01:00
32 lines
910 B
YAML
Executable File
32 lines
910 B
YAML
Executable File
version: "3"
|
|
services:
|
|
n8n:
|
|
image: n8nio/n8n:latest
|
|
container_name: n8n
|
|
ports:
|
|
- "5679:5678"
|
|
environment:
|
|
- N8N_HOST=IP
|
|
- N8N_PORT=5678
|
|
- N8N_PROTOCOL=https
|
|
- N8N_BASIC_AUTH_ACTIVE=true
|
|
- N8N_BASIC_AUTH_USER=sth
|
|
- N8N_BASIC_AUTH_PASSWORD=pwd
|
|
- N8N_RUNNERS_ENABLED=true
|
|
- N8N_RUNNERS_MODE=internal
|
|
- N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=true
|
|
- N8N_SECURE_COOKIE=false
|
|
volumes:
|
|
- /share/docker_data/n8n/n8n-data:/home/node/.n8n
|
|
restart: ${RESTART:-unless-stopped}
|
|
stop_grace_period: 60s
|
|
labels:
|
|
homepage.container: n8n
|
|
homepage.description: Workflow management
|
|
homepage.group: Utils
|
|
homepage.href: https://${APPNAME}.sectorq.eu
|
|
homepage.icon: ${APPNAME}.png
|
|
homepage.name: n8n
|
|
homepage.server: my-docker
|
|
wud.watch: true
|
|
wud.watch.digest: true |