260307:1718 20260307:1700 fix n8n workflow project_id, issued_date and received_date
Build and Deploy / deploy (push) Successful in 55s
Build and Deploy / deploy (push) Successful in 55s
This commit is contained in:
@@ -28,9 +28,25 @@ services:
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
|
||||
tika:
|
||||
<<: [*restart_policy, *default_logging]
|
||||
image: apache/tika:latest-full
|
||||
container_name: tika
|
||||
user: "root"
|
||||
environment:
|
||||
- TESSDATA_PREFIX=/tessdata
|
||||
volumes:
|
||||
- /share/np-dms/n8n/tessdata:/tessdata
|
||||
networks:
|
||||
lcbp3: {}
|
||||
expose:
|
||||
- "9998"
|
||||
|
||||
n8n:
|
||||
<<: [*restart_policy, *default_logging]
|
||||
image: n8nio/n8n:latest
|
||||
# build:
|
||||
# context: ./n8n-custom
|
||||
container_name: n8n
|
||||
stdin_open: true
|
||||
tty: true
|
||||
@@ -41,7 +57,7 @@ services:
|
||||
resources:
|
||||
limits:
|
||||
cpus: "1.5"
|
||||
memory: 2G
|
||||
memory: 3G
|
||||
reservations:
|
||||
cpus: "0.25"
|
||||
memory: 512M
|
||||
@@ -66,6 +82,7 @@ services:
|
||||
N8N_BLOCK_FILE_ACCESS_TO_N8N_FILES: "false"
|
||||
GENERIC_TIMEZONE: "Asia/Bangkok"
|
||||
NODE_FUNCTION_ALLOW_BUILTIN: "*"
|
||||
NODES_EXCLUDE: "[]"
|
||||
# DB Setup
|
||||
DB_TYPE: postgresdb
|
||||
DB_POSTGRESDB_DATABASE: n8n
|
||||
@@ -109,4 +126,5 @@ networks:
|
||||
# chmod -R 755 /share/np-dms/n8n3
|
||||
# chown -R 999:999 /share/np-dms/n8n/postgres-data
|
||||
# chmod -R 700 /share/np-dms/n8n/postgres-data
|
||||
|
||||
#
|
||||
# docker compose -f docker-compose-lcbp3-n8n.yml build n8n
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
FROM n8nio/n8n:latest-debian
|
||||
|
||||
USER root
|
||||
|
||||
# Fix Debian 10 Buster EOL package repositories
|
||||
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
|
||||
|
||||
USER node
|
||||
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user