Posts by João Pedro • 77 points
3 posts
-
2
votes1
answer2080
viewsA: Node and Mysql connection error in Docker Compose: Error: connect ECONNREFUSED
Talk guys! Next, no one answered me. So, like every good old programmer, I went to research plus to find the solution to my problem, and yes, I found the answer. What was happening was that in my…
-
0
votes1
answer2080
viewsQ: Node and Mysql connection error in Docker Compose: Error: connect ECONNREFUSED
I created a file docker-compose.yml to load a Mysql database and a Nodejs server: version: '3' services: database: image: mysql:5.7 container_name: 'database' restart: 'always' volumes: -…
-
3
votes3
answers464
viewsQ: Deleting files on Github after push
I created my first repository to study on git and github, did my first commits and pushes in the remote repository, and only then did I realize that I had a file I didn’t want, how do I get it out…