Para criar o diretório automaticamente no contêiner, você também pode adicionar a opção create=dir
no fstab:
/mnt/ssd/solr_data /var/lib/lxc/Solr4StandAlone/rootfs/data none bind,create=dir
Editar: isso é específico para o LXC. Consulte este tópico
Just like we already had "optional", this adds two new LXC-specific mount flags:
create=dir (will do a mkdir_p on the path)
create=file (will do a mkdir_p on the dirname + a fopen on the path)
This was motivated by some of the needed bind-mounts for the unprivileged containers.