Found more Nodes on Website as in the docker container

I want to start with n8n in a docker container, like:

docker run -it --rm \
  --name n8n \
  -p 5678:5678 \
  n8nio/n8n

But when I go to localhost:5678 I found less nodes as on the website:

What must I do, to get all nodes in the docker container?

Best Regards

3ele Projects

I guess you did pull the n8n docker image a long time ago and you so simply have to get the newest. That can be done like that:

docker pull n8nio/n8n:latest
1 Like

Iā€™m so stupid. Thanks a lot.