Constructive feedback is appreciated.

#!/bin/bash

FILE=docker-compose.yml

if [ -f "$FILE" ]; then
	rm $FILE
	wget https://raw.githubusercontent.com/LemmyNet/lemmy/main/docker/prod/docker-compose.yml
else
	echo "$FILE does not exist. Creating $FILE now..."
	wget https://raw.githubusercontent.com/LemmyNet/lemmy/main/docker/prod/docker-compose.yml
fi
  • @nutomicMA
    link
    22 years ago

    I would recommend that you use our ansible playbook instead. It does this and a lot more.

    • DessalinesA
      link
      32 years ago

      @seahorse@lemmy.ml and then after you get ansible set up, the update script would be as simple as:

      git pull
      ansible-playbook -i inventory/hosts lemmy.yml --become