524 B
524 B
Gently boot and begin running all services
- Confirm all SMB shares are mounted and working. Run
mount -v | grep cifs
to list all cifs shares. - Confirm iSCSI device is connected and mounted. Run
sudo iscsiadm -m session
to list active sessions. Then runmount -v | grep /mnt/iscsi
to ensure the device is mounted. - Check for any leftover containers. Run
docker ps -a
. - Start all Docker compose stacks. Run
for stack in /home/admin/homelab/fighter/config/*; do cd $stack && docker-compose up -d; done
.