bhyve n8n running on podman in a bhyve ubuntu vm

i just installed n8n in a podman container in a bhyve ubuntu vm


by default n8n is set to listen on localhost
so you need to change the podman command to allow access from the lan

create a podman volume for the n8n data

Code:
podman volume create n8n_data

we need to change 3 things from the default docker command

1 - N8N_LISTEN_ADDRESS=0.0.0.0
2 - N8N_SECURE_COOKIE=false
3 - change 192.168.1.151 to the ip address of your byhve vm

3 - may not be needed as we setting n8n to listen on 0.0.0.0

Code:
podman run -it --rm --name n8n -p 192.168.1.151:5678:5678 -v n8n_data:/home/node/.n8n -e N8N_LISTEN_ADDRESS=0.0.0.0 -e N8N_SECURE_COOKIE=false docker.n8n.io/n8nio/n8n

then you need to create an account with
email:
first name:
last name:
password:

the password must be 8 characters and include one capital letter and one number

n8n podman notes so far


only just got it installed

i have ollama working on Freebsd,
so i will have to set ollama to listen on 0.0.0.0 so the n8n in the podman container in the vm can access it

heres how i set up the bhyve vm and podman to install invidious
you can skip the invidious set up and just set up the bhyve vm and podman


n8n screenshot

n8n-podman.png
 
Back
Top