690419:1831 feat: update CI/CD to use SSH key authentication #05
CI / CD Pipeline / build (push) Failing after 4m57s
CI / CD Pipeline / deploy (push) Has been skipped

This commit is contained in:
2026-04-19 18:31:30 +07:00
parent 733f3c3987
commit 13745e5874
61 changed files with 6709 additions and 1241 deletions
@@ -1,3 +1,3 @@
# Per-stack .env.example — n8n + postgres + tika + docker-socket-proxy
N8N_DB_PASSWORD=
N8N_ENCRYPTION_KEY=
N8N_DB_PASSWORD=Np721220$
N8N_ENCRYPTION_KEY=9AAIB7Da9DW1qAhJE5/Bz4SnbQjeAngI
@@ -15,6 +15,7 @@ x-logging: &default_logging
options:
max-size: '10m'
max-file: '5'
name: lcbp3-n8n
services:
n8n-db:
<<: [*restart_policy, *default_logging]
@@ -112,7 +113,9 @@ services:
n8n:
<<: [*restart_policy, *default_logging]
image: n8nio/n8n:1.66.0
build:
context: ./n8n-custom
dockerfile: Dockerfile
container_name: n8n
depends_on:
n8n-db:
@@ -163,6 +166,8 @@ services:
EXECUTIONS_DATA_PRUNE: 'true'
EXECUTIONS_DATA_MAX_AGE: 168
# EXECUTIONS_DATA_PRUNE_TIMEOUT: 60
# Storage Migration (fix deprecation warning)
N8N_MIGRATE_FS_STORAGE_PATH: 'true'
ports:
- '5678:5678'
@@ -1,4 +1,4 @@
FROM n8nio/n8n:latest-debian
FROM n8nio/n8n:2.16.1
USER root
@@ -6,6 +6,6 @@ USER root
RUN echo "deb http://archive.debian.org/debian buster main" > /etc/apt/sources.list && \
echo "deb http://archive.debian.org/debian-security buster/updates main" >> /etc/apt/sources.list && \
apt-get update -y && \
apt-get install -y poppler-utils
apt-get install -y poppler-utils python3 python3-pip
USER node