646 B
646 B
Gracefully shut down all services and then the system
- Shut down all docker stacks. Run
for stack in /home/admin/homelab/fighter/config/*; do cd $stack && docker-compose down; done
. - Unmount the iSCSI device. Run
sudo umount /mnt/iscsi
. - Log out of the iSCSI session. Run
sudo iscsiadm --mode node --targetname "iqn.2020-03.net.jafner:fighter" --portal "192.168.1.10:3260" --logout
. - Unmount the SMB shares. Run
for mount in media calibre-web torrenting av; do sudo umount /mnt/nas/$mount; done
. This command may need updating for the specific SMB shares currently mounted. - Shut down the system. Run
sudo shutdown now
.