Docker Error --user-profiles

I am trying to upgrade to the latest Rhasspy version and I did something entirely stupid.

I removed the old docker container and tried to install the latest with the following command:

docker run -d \
-p 12101:12101 \
--net=host \
-e PGID=1000 -e PUID=1000 \
--name rhasspy-base \
--restart unless-stopped \
-v "$HOME/rhasspy/profiles:/profiles" \
-v "/etc/localtime:/etc/localtime:ro" \
-e TZ=America/Toronto \
--user-profiles /profiles \
--profile en \
rhasspy/rhasspy

This worked to install Rhasspy the last time. A very similar command was used to install the latest on my Rpi Zero but when I try this command on my VM I get the following error:

unknown flag: --user-profiles
See 'docker run --help'.

If I exclude the " --user-profiles /profiles \ " will I break anything?

I believe you have ordered it incorrectly. Try placing ‘rhasspy/rhasspy’ above user-profiles and profile:

docker run -d \
-p 12101:12101 \
--net=host \
-e PGID=1000 -e PUID=1000 \
--name rhasspy-base \
--restart unless-stopped \
-v "$HOME/rhasspy/profiles:/profiles" \
-v "/etc/localtime:/etc/localtime:ro" \
-e TZ=America/Toronto \
rhasspy/rhasspy \
--user-profiles /profiles \
--profile en

Thanks, Looks like that worked.