Frigate would not start

I have Frigate docker container on Proxmox server that fails to start. It worked fine earlier, haven’t done any system changes, just had to stop Frigate for some weeks due to refurbishing work at home. I did reconnect camera and started Frigate docker container I get non descriptive explanation:

run_buffer: 322 Script exited with status 2
lxc_init: 844 Failed to run lxc.hook.pre-start for container "104"
__lxc_start: 2027 Failed to initialize container "104"
TASK ERROR: startup for container '104' failed

Found the cause of the problem. External HDD was not mounted during Proxmox startup and that was stopping Frigate to start. So I did run mount -a in the console, external HDD was mounted (asked for userID and password) and then Frigate was started. Can I make this mounting task to work at Proxmox startup (including user name and password) ?

You have to edit fstab.
These were the steps I took to mount a partition:

6 - Get PARTUUID
blkid

7 - Edit fstab
echo ‘PARTUUID=c52ae2c8-41ee-dc46-9e3c-fabd31bc13ff /ssd ext4 defaults 0 0’ >> /etc/fstab

8 - Criate folder mkdir /ssd
systemctl daemon-reload

9 - Montar partition
mount -a

I don’t know how you did it, but at least the partition didn’t ask for a username and password