Can´t run the Self-hosted AI starter kit

Hey @am75

Not sure if this is helpful but the “n8n-import” uses the same image as the “n8n” container - basically the same thing but “n8n-import”'s only task is to import your on-disk backups into the database.

Perhaps downloading the n8n image again and booting it up separately might help?

docker pull n8nio/n8n:latest

# note: the container image name might vary slightly, use `docker ps` to check
docker compose up -d n8n-import

# then perhaps ssh into the container and check it out?
docker exec -it n8n-import /bin/sh
cat /usr/local/lib/node_modules/n8n/package.json 
1 Like