From 528ebb08d3150988e7b1e1035e6a9c2c7584932b Mon Sep 17 00:00:00 2001 From: Joey Hafner Date: Wed, 13 Jul 2022 12:09:09 -0700 Subject: [PATCH] Init rackdown docs --- docs/Complete and Partial Rackdown.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/Complete and Partial Rackdown.md b/docs/Complete and Partial Rackdown.md index a217332..a486ecd 100644 --- a/docs/Complete and Partial Rackdown.md +++ b/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