Correct way to deploy WAR files in docker image

后端 未结 5 1850
梦毁少年i
梦毁少年i 2020-12-13 10:19

What is the docker way to deploy java projects in a docker container?

Do I copy the war into webapps:

FROM jetty:9.2.10
MAINTAINER Me \"me@me.com\"
A         


        
5条回答
  •  囚心锁ツ
    2020-12-13 10:40

    You should actually ALWAYS deploy the exploded .war.

    There are two elements of speed to think about here:

    1. How fast is it to be able to push up your image to a container repository?

      and

    2. How quickly can a new instance of my container start serving requests? (important in an elastic-scaling environment)

    The answer to both is the same: You are better off exploding the .war file when creating your container and NOT copying the .war file to it.

    This has the following two very positive effects:

    1. It makes the differences between container versions much smaller, and so your upload time is less.
    2. It means that, when dynamically scaling to meet application demand, your new container instances don't have to unzip your .war file before they can start responding to requests.

    For those of us burdened by slow-upload connections, it's also a great idea to use a CI server or even a cloud-hosted VM to build and push your docker images to dockerhub or another container registry. That way you can take advantage of gigabit-scale upload speeds.

提交回复
热议问题