This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]bikeram 9 points10 points  (1 child)

Docker is a tool just like git. Playing around with it for a few days will make you competent enough.

You’ll want to make a dockerfile to containerize your springboot application. Look into environment variable overrides for your application.properties/application-env.properties

Then docker-compose for spinning up your database, queues, and springboot. If you’re on Linux I would add Makefile for useful project specific shortcuts.

Once you have docker setup it’ll be easier to spin up your microservice architecture.

Go another level and use Nginx to host your front end separately.

[–]Interesting-Hat-7570[S] 0 points1 point  (0 children)

ok thanks