我有一个docker-compose.yml
配置.其中一个容器是Tomcat服务器,它.war
在webapps
目录中部署了一些默认文件.
我希望能够传递(覆盖)war
由驻留在主机上的某些人部署的存档.我认为最好的方法是以某种方式切换/覆盖启动docker-compose
:默认情况下,我想运行war
容器内的webapp(文件),但我希望有可能从我的主机安装目录(用于如果需要,在开发/调试期间的例子.
目前,我在我的行中有以下行,docker-compose.yml
如果我需要默认值,则会注释掉.
volumes: # By default, there is the latest version of the application already present in the container # If you want to provider the container with your own .war file, uncomment the following line # - ./application/webapps:/usr/local/tomcat/webapps
有没有更好的方法来实现这一目标?
我将使用https://docs.docker.com/compose/extends/#example-use-case来运行指定卷的服务扩展,而不是(不)安装注释掉该行的卷.
我这样做是为了解决两个不同的问题:
当docker镜像要在生产中运行并且捆绑了所有必需的文件时,我没有指定卷.
我在开发期间指定一个卷,以检查实时更改.