Posts by Rogério Fonseca • 331 points
6 posts
-
1
votes2
answers1062
viewsA: Node + Pokeapi "Error: connect ECONNREFUSED 127.0.0.1:443"
This error usually occurs when the used port is already in use. Run the command below to check who is using the port. $ netstat -lant | grep ":443"
-
0
votes1
answer69
viewsA: Yourcompleteme did Enables Function error?
After the installation the YCM should be compiled generating semantic support. When installing the Youcompleteme the ./install.py should be executed cd ~/.vim/bundle/YouCompleteMe ./install.py…
vimanswered Rogério Fonseca 331 -
3
votes4
answers5515
viewsA: Dockerize Java Web App: Maven + Tomcat + Docker
The idea is that I can use this solution in any project I use "Maven + Tomcat" putting the following files in the project root by following the steps below. In the example I used the following…
-
15
votes4
answers5515
viewsQ: Dockerize Java Web App: Maven + Tomcat + Docker
I have often seen several tutorials from Docker stop up "ready" services, but I see few related instructions on how to use it within the development flow. Mainly on compiled languages as an example…
-
2
votes1
answer293
viewsA: How to create the Docker file from a Maven java SE program?
A solution would be: Create an archive Dockerfile with the content below: FROM openjdk:7-jdk ADD . /code WORKDIR /code RUN javac *.java CMD java Principal Command to generate the image named…
-
2
votes2
answers1256
viewsA: Install JDK on linux Ubuntu
Do the Download of .tar gz. Execute the command tar to unzip the downloaded file: tar -xvf jdk-8u77-linux-i586.tar.gz Now create a folder and move the unzipped files to the created folder: sudo…
linuxanswered Rogério Fonseca 331