What's the docker-compose equivalent of docker run --init?

时光总嘲笑我的痴心妄想 提交于 2019-12-05 20:30:37

问题


According to https://github.com/krallin/tini#using-tini, tini is built into docker, and can be used by passing the --init flag to docker run. In my case I'm using docker-compose and don't invoke docker run directly. How can I pass this flag?


回答1:


If you are using version 2 of docker-compose, the configuration parameter is called init.

Example:

version: '2.2'
services:
  web:
    image: alpine:latest
    init: /usr/libexec/docker-init

Please see here for more details: https://docs.docker.com/compose/compose-file/compose-file-v2/#init

If you're using docker-compose version 3, apparently this has been removed and returned in version 3.7. Please refer to the following ticket: https://github.com/docker/docker.github.io/issues/3149



来源:https://stackoverflow.com/questions/50356032/whats-the-docker-compose-equivalent-of-docker-run-init

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!