I am trying to use this docker in my cloud instance.
Oracle, Arm-based Ampere Al Compute,
In the Portainer stack I am using this code:
version: '3.8'
services:
n8n-python:
image: naskio/n8n-python:latest-debian # use this if intended to use heavy python packages
# image: naskio/n8n-python # alpine for light python packages
# command: /bin/sh -c "n8n start"
restart: always
container_name: n8n-python
environment:
GENERIC_TIMEZONE: ${TIMEZONE}
TZ: ${TIMEZONE}
ports:
- "5252:5678"
volumes:
- ./n8n_data:/home/node/.n8n
- ./local_files:/data/files # by default workdir == /data
- ./python_scripts:/data/py_scripts
- ./requirements.txt:/data/requirements.txt
I have this problem in the log:
exec /docker-entrypoint.sh: exec format error
Any idea how to solve it?
If I try to use this image: image: naskio/n8n-python # alpine for light python packages
I got this error:
n8n-python Pulling no matching manifest for linux/arm64/v8 in the manifest list entries
Thanks in adavance