Docker Command - adding additional parrms to GUI

I am setting up a Docker Container for Home Assistant. In order for it to access Bluetooth, I am told that it needs to leverage “dbus”.

The docker command looks like this: (below)

docker run -d
–name homeassistant
–privileged
–restart=unless-stopped
-e TZ=MY_TIME_ZONE
-v /PATH_TO_YOUR_CONFIG:/config
*-v /run/dbus:/run/dbus:ro *
–network=host
etc.

I’m wondering if I use the Container Station’s GUI, is there some way to add in the " -v /run/dbus:/run/dbus:ro" when creating the container?

In the GUI under “advanced”, there is a section called “Command”. Can I add the dbus line to it?

Any help would be appreciated.

thx.