mirror of
https://gitlab.sectorq.eu/home/docker-compose.git
synced 2025-10-28 17:20:08 +01:00
Compare commits
6 Commits
62060928f1
...
23410d2088
| Author | SHA1 | Date | |
|---|---|---|---|
| 23410d2088 | |||
| c25c4ec85e | |||
| ffd3048b3d | |||
| 3c58086f88 | |||
| b1c4953302 | |||
| e74513fd23 |
@@ -23,3 +23,4 @@ services:
|
||||
- /share/docker_data/homepage/config:/app/config
|
||||
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||||
- /share/docker_data/homepage/images:/app/public/images
|
||||
- /share/docker_data/homepage/icons:/app/public/icons
|
||||
2
n8n/.env
Executable file
2
n8n/.env
Executable file
@@ -0,0 +1,2 @@
|
||||
APPNAME=bitwarden
|
||||
DOCKER_REGISTRY=r.sectorq.eu/library/
|
||||
32
n8n/docker-compose.yml
Executable file
32
n8n/docker-compose.yml
Executable file
@@ -0,0 +1,32 @@
|
||||
version: "3"
|
||||
services:
|
||||
n8n:
|
||||
image: ${DOCKER_REGISTRY:-}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: /icons/n8n.svg
|
||||
homepage.name: n8n
|
||||
homepage.server: my-docker
|
||||
wud.watch: true
|
||||
wud.watch.digest: true
|
||||
Reference in New Issue
Block a user