mirror of
https://github.com/vhaudiquet/homeprod.git
synced 2025-12-18 20:16:05 +00:00
Bumps [n8nio/n8n](https://github.com/n8n-io/n8n) from 1.122.5 to 1.123.5. - [Release notes](https://github.com/n8n-io/n8n/releases) - [Commits](https://github.com/n8n-io/n8n/compare/n8n@1.122.5...n8n@1.123.5) --- updated-dependencies: - dependency-name: n8nio/n8n dependency-version: 1.123.5 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
33 lines
549 B
YAML
33 lines
549 B
YAML
services:
|
|
n8n:
|
|
image: docker.n8n.io/n8nio/n8n:1.123.5
|
|
environment:
|
|
- TZ=Europe/Paris
|
|
- N8N_SECURE_COOKIE=false
|
|
ports:
|
|
- "5678"
|
|
networks:
|
|
- default
|
|
- proxy
|
|
volumes:
|
|
- data:/home/node/.n8n
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.n8n.rule=Host(`n8n.lan`)"
|
|
|
|
redis:
|
|
image: redis:8.2.2
|
|
|
|
volumes:
|
|
data:
|
|
driver: local
|
|
driver_opts:
|
|
type: 'none'
|
|
o: 'bind'
|
|
device: '/app/n8n/data'
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|
|
name: proxy
|