# ssh <root@the.conatiner.ip.address>
## RHEL/CentOS 7 64-Bit ##
# wget http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm
# rpm -ivh epel-release-7-5.noarch.rpm
# cd /root
# nano fuse-mknod.sh In the script file, enter the following:
#!/usr/bin/env bash
# creates a node for fuse devices
mknod /dev/fuse c 10 229
chmod 777 /dev/fuse
# nano /usr/lib/systemd/system/fuse-mknod.service In the unit file, enter the following:
[Unit]
Description=Make Fuse Device Node Service
After=network.target
[Service]
Type=simple
ExecStart=/root/fuse-mknod.sh
Restart=on-abort
[Install]
WantedBy=multi-user.target
# systemctl enable fuse-mknod.service