I am looking to use Digital Ocean services to host cloud apps. Can anyone share information on deployment of jhipster apps on Digital Ocean ? Any setup tips or steps to watch out ?
Asked
Active
Viewed 1,291 times
2 Answers
0
You can use docker module to build jhip docker containers...
More on: https://jhipster.github.io/modules/marketplace/#/details/generator-jhipster-docker

nsfreak
- 186
- 1
- 6
-
Thanks for the info. – SgCoder Jul 22 '16 at 08:41
0
Install JAVA with following command (for example JAVA 8):
sudo apt-get update && sudo apt-get install openjdk-8-jdk
Install DB (Mysql/Postgre etc which you're using), Create database and user
Uploading
.jar
fileRun the application
For more details.
-
Can you please take a look at the following question:https://stackoverflow.com/q/66858780/9409877 – HKS Mar 30 '21 at 09:22
-
I think you have already got the solution. Your preferred port (port 5000) needed to be allowed. Happy coding! – fatCop Apr 01 '21 at 15:47
-