diff --git a/homelab/docs/Complete and Partial Rackdown.md b/homelab/docs/Complete and Partial Rackdown.md index a2173325..a486ecd2 100644 --- a/homelab/docs/Complete and Partial Rackdown.md +++ b/homelab/docs/Complete and Partial Rackdown.md @@ -45,4 +45,6 @@ flowchart TD; 2. Shut down Minecraft servers: `cd ~/homelab/server/config/minecraft && for service in ./*.yml; do echo "===== SHUTTING DOWN $service =====" && docker-compose -f $service down; done` 3. Shut down the host: `sudo shutdown now`. Wait 30 seconds. 4. Press the power button on the front of the chassis to begin booting. Take note of any POST beeps during this time. Wait for the host to be accessible via SSH. -5. Check current running docker containers \ No newline at end of file +5. Check current running docker containers +6. Start most services: `for app in ~/homelab/server/config/*; do echo "===== STARTING $app =====" && cd $app && docker-compose up -d; done` +7. Start Minecraft servers: `cd ~/homelab/server/config/minecraft && for service in ./*.yml; do echo "===== STARTING $service =====" && docker-compose -f $service up -d; done` \ No newline at end of file