Posts by Toledo Neto • 86 points
5 posts
-
6
votes3
answers259
viewsA: Which means an "!" exclamation before a string inside an if in C#
In general the operator "!" is the logical "not", ie a negation, I believe it is the same in C# as quoted here. That stretch is probably denying string.IsNullOrEmpty(Connect._message).…
-
1
votes1
answer258
viewsA: Run laradock (Docker and Laravel) with mysql local
If you are using Docker-Compose, you can also use the host network as the Docker network, which enables your containers within Compose to access host applications. More here. If you are running pure…
-
0
votes1
answer23
viewsA: Docker - Jenkins Installation - (Docker:dind Command)
Usually the last component of a Docker run, build, and other command is the image you are using to execute the command. In the case of your question, Docker:dind is the image that will be used as…
-
0
votes2
answers176
viewsA: How to create a Docker image using a github project but to download it into the Docker with the clone using ssh key
I believe you have two approaches here: Copy ssh keys into the container (as suggested by Caio Augusto Papa) still in Dockerfile doing something like COPY path/local path/no/container For example,…
-
0
votes2
answers172
viewsA: Docker conect mysql in another Docker-Compose
You can try two approaches that might work: Create an external network for everyone to access. It seems that’s what you did when, in the second file, you declared networks: mysql_net: external: true…