Docker
部份步驟也許不適用於你的安裝過程。 Understand what they do, and ignore, or customize as necessary.
準備
對作業系統支援與服務套件所需,
Debian Linux
安裝 Docker(引擎):https://docs.docker.com/engine/install/debian/
Fedora Linux
安裝 Docker(引擎):https://docs.docker.com/engine/install/fedora/
額外指示
sudo usermod -a -G docker <username>;
重新登入或重開機
sudo su -;
mkdir /srv/UMS;
chcon -t svirt_sandbox_file_t /srv/UMS;
chgrp docker /srv/UMS;
chmod -R g+w /srv/UMS;
Mount storage to host and link into that directory, probably read-only. mount <Videos-Share> '/srv/UMS/Videos'
Test example: Simple symlinking to another path on the host system may not work, since there will be no access to it outside of the mounted volume path for the docker container. Try copying files inside this location instead.