stunning screenshots in seconds https://moocup.jaydip.me

fix: docker hosting guide added in README

+13 -5
+13 -5
README.md
··· 36 36 ## Self-hosting 37 37 You can easily self-host moocup on platforms like Vercel, Railway, or Netlify—just provide the repository and follow the standard steps to deploy a web app. 38 38 39 - One-click Railway Deploy: 40 - 41 - 39 + ### One-click Railway Deploy: 42 40 43 41 [![Deploy on Railway](https://railway.app/button.svg)](https://railway.com/deploy/moocup?referralCode=bmgbXt) 42 + 44 43 - for the latest version in a single click. 45 44 46 - Manual Hosting: 45 + ### Docker Image 46 + 47 + You can also run moocup using Docker from Docker Hub: 48 + ``` 49 + docker pull jellydeck/moocup:latest 50 + docker run -p 8080:80 jellydeck/moocup:latest 51 + ``` 52 + - app will be available at http://localhost:8080 53 + 54 + ### Manual Hosting: 47 55 48 56 - Clone the repository. 49 57 - Build the project just like any other Vite app: ··· 55 63 56 64 - Upload the dist folder to your hosting provider (or attach it to a public URL) to make it accessible online. 57 65 58 - That’s it—you’ve got your own moocup instance running! 66 + That’s it - you’ve got your own moocup instance running! 59 67 60 68 ## Contributing 61 69