Posts by arkanjoms • 85 points
5 posts
-
1
votes2
answers103
viewsA: My container with Springboot is climbing before the container with Mysql finishes climbing
You can use a script to verify that the desired service is already running. I use the Wait-for a script compatible with Alpine images as a base, Using together with the depends_on you can control…
-
1
votes2
answers652
viewsA: Docker with React, refresh the updates without having to upload the container again
A way that I find a little more "clean" you can create the following files: Dockerfile-dev FROM node:8 WORKDIR /app COPY . / VOLUME /app EXPOSE 3000 CMD yarn; yarn start Docker-Compose.yml version:…
-
0
votes2
answers363
viewsA: Set domain to Docker-Compose container
If you want to access only one domain on your machine, a simple way is to change the port from 3000 to 80 in your container and change the hosts files by adding the "domain" you want to use.…
-
0
votes1
answer273
viewsA: Custom Session generated by spring
Solution We set up the environment as follows: Nginx as load and proxy-reverse, it intercepts any request and redirects to url /auth, where there is an application only for authentication that…
-
3
votes1
answer273
viewsQ: Custom Session generated by spring
I have the following scenario: an application nodejs that saves the session in redis. another spring q application also saves the session in redis. I would like to share this same session between…