Cannot get CernVM-FS service container to run

I’m trying to run the Docker container by following the instructions on this page: Getting Started — CernVM-FS 2.9.4 documentation

For some reason it seems that the mount points are not being created.

Running the command results in this:

docker run \
  -e CVMFS_CLIENT_PROFILE=single \
  -e CVMFS_REPOSITORIES=sft.cern.ch \
  --cap-add SYS_ADMIN \
  --device /dev/fuse \
  --volume /cvmfs:/cvmfs:shared \
  cvmfs/service

CernVM-FS service container version 2.9.4-1
Thu Nov  3 18:33:05 UTC 2022
===================================================================================

                 ____             __     ____  __       _____ ____                 
                / ___|___ _ __ _ _\ \   / /  \/  |     |  ___/ ___|                
               | |   / _ \ '__| '_ \ \ / /| |\/| |_____| |_  \___ \                
               | |__|  __/ |  | | | \ V / | |  | |_____|  _|  ___) |               
                \____\___|_|  |_| |_|\_/  |_|  |_|     |_|   |____/                

===================================================================================
                                      NOTE                                         
===================================================================================
You should run me on Docker like this
  docker run --cap-add SYS_ADMIN --device /dev/fuse --volume /cvmfs:/cvmfs:shared \
    -e CVMFS_HTTP_PROXY=<site squid> cvmfs/service

Optionally you can also set the 'CVMFS_REPOSITORIES=unpacked.cern.ch,...'
  and 'CVMFS_QUOTA_LIMIT=<cache limit in MB>' environment variables

For even more control, you can bind mount (-v option) a config directory
over the container's default /etc/cvmfs and bind mount a host location
for the cache over /var/lib/cvmfs
===================================================================================
[INF] using CVMFS_CLIENT_PROFILE='single'
[INF] using CVMFS_QUOTA_LIMIT='4000'
[INF] mounting cvmfs-config.cern.ch sft.cern.ch ...
Moint point /cvmfs/cvmfs-config.cern.ch does not exist

Edit: Running on Fedora 36 host

Seems it is an SELinux issue. Fixed by changing --volume /cvmfs:/cvmfs:shared from “shared” to “z” seems to work.

Thank you for the follow-up!