chore: bump container versions and remove n8n
- gitea: 1.25.2 -> 1.26.1 (debyl + skudak) - caddy: 2.10.2 -> 2.11.2 - uptime-kuma: 2.0.2 -> 2.3.2 (debyl + skudak) - bookstack: 25.7 -> 26.3.4 - home-assistant: 2026.1 -> 2026.5.1 - immich (server + ML): v2.5.0 -> v2.7.5 - remove n8n service (unused) Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -1,54 +0,0 @@
|
||||
---
|
||||
- name: create n8n host directory volumes
|
||||
become: true
|
||||
ansible.builtin.file:
|
||||
path: "{{ item }}"
|
||||
state: directory
|
||||
owner: "{{ podman_user }}"
|
||||
group: "{{ podman_user }}"
|
||||
mode: 0755
|
||||
notify: restorecon podman
|
||||
loop:
|
||||
- "{{ n8n_path }}"
|
||||
|
||||
- name: set n8n volume ownership for node user
|
||||
become: true
|
||||
become_user: "{{ podman_user }}"
|
||||
ansible.builtin.command:
|
||||
cmd: podman unshare chown -R 1000:1000 {{ n8n_path }}
|
||||
changed_when: false
|
||||
|
||||
- name: flush handlers
|
||||
ansible.builtin.meta: flush_handlers
|
||||
|
||||
- import_tasks: podman/podman-check.yml
|
||||
vars:
|
||||
container_name: n8n
|
||||
container_image: "{{ image }}"
|
||||
|
||||
- name: create n8n container
|
||||
become: true
|
||||
become_user: "{{ podman_user }}"
|
||||
containers.podman.podman_container:
|
||||
name: n8n
|
||||
image: "{{ image }}"
|
||||
image_strict: true
|
||||
restart_policy: on-failure:3
|
||||
log_driver: journald
|
||||
network: shared
|
||||
volumes:
|
||||
- "{{ n8n_path }}:/home/node/.n8n"
|
||||
ports:
|
||||
- 5678:5678/tcp
|
||||
env:
|
||||
N8N_HOST: "{{ n8n_server_name }}"
|
||||
N8N_PORT: "5678"
|
||||
N8N_PROTOCOL: https
|
||||
WEBHOOK_URL: "https://{{ n8n_server_name }}/"
|
||||
N8N_SECURE_COOKIE: "true"
|
||||
GENERIC_TIMEZONE: America/New_York
|
||||
|
||||
- name: create systemd startup job for n8n
|
||||
include_tasks: podman/systemd-generate.yml
|
||||
vars:
|
||||
container_name: n8n
|
||||
@@ -14,7 +14,7 @@
|
||||
|
||||
- import_tasks: containers/base/caddy.yml
|
||||
vars:
|
||||
image: docker.io/library/caddy:2.10.2
|
||||
image: docker.io/library/caddy:2.11.2
|
||||
tags:
|
||||
- caddy
|
||||
- web
|
||||
@@ -31,7 +31,7 @@
|
||||
|
||||
- import_tasks: containers/home/hass.yml
|
||||
vars:
|
||||
image: ghcr.io/home-assistant/home-assistant:2026.1
|
||||
image: ghcr.io/home-assistant/home-assistant:2026.5.1
|
||||
tags: hass
|
||||
|
||||
- import_tasks: containers/home/partkeepr.yml
|
||||
@@ -45,18 +45,23 @@
|
||||
image: "git.debyl.io/debyltech/partsy:latest"
|
||||
tags: partsy
|
||||
|
||||
- import_tasks: containers/skudak/partsy.yml
|
||||
vars:
|
||||
image: "git.debyl.io/debyltech/partsy:latest"
|
||||
tags: skudak, partsy-skudak
|
||||
|
||||
- import_tasks: containers/skudak/wiki.yml
|
||||
vars:
|
||||
db_image: docker.io/library/mysql:5.7.21
|
||||
image: docker.io/solidnerd/bookstack:25.7
|
||||
image: docker.io/solidnerd/bookstack:26.3.4
|
||||
tags: skudak, skudak-wiki
|
||||
|
||||
- import_tasks: containers/home/photos.yml
|
||||
vars:
|
||||
db_image: docker.io/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0
|
||||
ml_image: ghcr.io/immich-app/immich-machine-learning:v2.5.0
|
||||
ml_image: ghcr.io/immich-app/immich-machine-learning:v2.7.5
|
||||
redis_image: docker.io/redis:6.2-alpine@sha256:eaba718fecd1196d88533de7ba49bf903ad33664a92debb24660a922ecd9cac8
|
||||
image: ghcr.io/immich-app/immich-server:v2.5.0
|
||||
image: ghcr.io/immich-app/immich-server:v2.7.5
|
||||
tags: photos
|
||||
|
||||
- import_tasks: containers/home/cloud.yml
|
||||
@@ -76,19 +81,14 @@
|
||||
image: git.debyl.io/debyltech/fulfillr:20260509.2150
|
||||
tags: debyltech, fulfillr
|
||||
|
||||
- import_tasks: containers/debyltech/n8n.yml
|
||||
vars:
|
||||
image: docker.io/n8nio/n8n:2.11.3
|
||||
tags: debyltech, n8n
|
||||
|
||||
- import_tasks: containers/debyltech/uptime-kuma.yml
|
||||
vars:
|
||||
image: docker.io/louislam/uptime-kuma:2.0.2
|
||||
image: docker.io/louislam/uptime-kuma:2.3.2
|
||||
tags: debyltech, uptime-debyltech
|
||||
|
||||
- import_tasks: containers/home/uptime-kuma.yml
|
||||
vars:
|
||||
image: docker.io/louislam/uptime-kuma:2.0.2
|
||||
image: docker.io/louislam/uptime-kuma:2.3.2
|
||||
tags: home, uptime
|
||||
|
||||
- import_tasks: data/geoip.yml
|
||||
@@ -108,7 +108,7 @@
|
||||
|
||||
- import_tasks: containers/home/gregtime.yml
|
||||
vars:
|
||||
image: localhost/greg-time-bot:3.4.3
|
||||
image: localhost/greg-time-bot:3.6.5
|
||||
tags: gregtime
|
||||
|
||||
- import_tasks: containers/home/zomboid.yml
|
||||
|
||||
Reference in New Issue
Block a user