"exec /sbin/tini: exec format error" on loading newest image

Describe the issue/error/question

All of my docker hosts upgraded to the latest image last night after which they would no longer start. Reverting back to 0.220.0 solves the problem.

What is the error message (if any)?

Attaching to n8n_n8n_1
n8n_1 | exec /sbin/tini: exec format error
n8n_n8n_1 exited with code 1

Please share the workflow

Share the output returned by the last node

Information on your n8n setup

Example docker-compose file:

version: “3”

services:
n8n:
image: n8nio/n8n
restart: always
ports:
- “127.0.0.1:5678:5678”
environment:
- N8N_BASIC_AUTH_ACTIVE=${N8N_BASIC_AUTH_ACTIVE}
- N8N_BASIC_AUTH_USER=${N8N_BASIC_AUTH_USER}
- N8N_BASIC_AUTH_PASSWORD=${N8N_BASIC_AUTH_PASSWORD}
- N8N_HOST=${SUBDOMAIN}.${DOMAIN_NAME}
- N8N_PORT=5678
- N8N_PROTOCOL=https
- NODE_ENV=production
- WEBHOOK_URL=https://${SUBDOMAIN}.${DOMAIN_NAME}/
- GENERIC_TIMEZONE=${GENERIC_TIMEZONE}
- N8N_EMAIL_MODE=smtp
- N8N_SMTP_HOST=[omitted]
- N8N_SMTP_PORT=465
- N8N_SMTP_USER=[omitted]
- N8N_SMTP_PASS=[omitted]
- N8N_SMTP_SENDER=noreply@[omitted]
- N8N_SMTP_SSL=true
- N8N_DISABLE_PRODUCTION_MAIN_PROCESS=false
- EXECUTIONS_PROCESS=own
- EXECUTIONS_MODE=queue
- EXECUTIONS_DATA_SAVE_ON_ERROR=all
- EXECUTIONS_DATA_SAVE_ON_SUCCESS=none
- EXECUTIONS_DATA_SAVE_ON_PROGRESS=true
- EXECUTIONS_DATA_SAVE_MANUAL_EXECUTIONS=true
- EXECUTIONS_DATA_PRUNE=true
- EXECUTIONS_DATA_MAX_AGE=360
- DB_TYPE=postgresdb
- DB_POSTGRESDB_DATABASE=${POSTGRES_DB}
- DB_POSTGRESDB_HOST=${POSTGRES_HOST}
- DB_POSTGRESDB_USER=${POSTGRES_USER}
- DB_POSTGRESDB_PASSWORD=${POSTGRES_PASSWORD}
- DB_POSTGRESDB_SCHEMA=${POSTGRES_SCHEMA}
- QUEUE_BULL_REDIS_HOST=[omitted]
- QUEUE_BULL_REDIS_PORT=[omitted]
- QUEUE_BULL_REDIS_PASSWORD=[omitted]
volumes:
- ${DATA_FOLDER}/n8n:/home/node/.n8n
- /local-files:/files
command: /bin/sh -c “sleep 5; n8n start”

Hey @Shawn_Blackburn,

The “latest” tag is currently not fully functional, We are aware of this one and using either 0.220.1 or 0.221.2 will work around the issue. We are expecting 0.222.1 to be released shortly which will resolve this.

Thanks for the quick update.

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.