You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
1.0 KiB

  1. #!/bin/sh
  2. #
  3. # Configured as part of the DigitalOcean 1-Click Image build process
  4. myip=$(hostname -I | awk '{print$1}')
  5. cat <<EOF
  6. ********************************************************************************
  7. Welcome to Wiki.js's 1-Click DigitalOcean Droplet.
  8. To keep this Droplet secure, the UFW firewall is enabled.
  9. All ports are BLOCKED except 22 (SSH), 80 (Docker) and 443 (Docker).
  10. * The Wiki.js 1-Click DigitalOcean Quickstart guide is available at:
  11. https://docs.requarks.io/install/digitalocean
  12. * You can SSH to this Droplet in a terminal as root: ssh root@$myip
  13. * Docker is installed and configured per Docker's recommendations:
  14. https://docs.docker.com/install/linux/docker-ce/ubuntu/
  15. * Docker Compose is installed and configured per Docker's recommendations:
  16. https://docs.docker.com/compose/install/#install-compose
  17. For more information, visit https://docs.requarks.io/install/digitalocean
  18. ********************************************************************************
  19. To delete this message of the day: rm -rf $(readlink -f ${0})
  20. EOF