我正在为类似Debian的发行版编写Docker images for maintainers个包。这些图像是通过添加维护所需的软件包从相应的Debian类发行版的官方图像中获得的,并以一些有用的安装卷开始,因此各种配置项从用户的环境中获取而不是保存在容器中。 / p>
当我从该图像启动 shell 并执行apt-src build
准备包时,操作正常启动,但容器与 tty 之间的连接莫名其妙地掉下来。使用docker ps -a
检查容器的状态会显示Exited (0)
。这很奇怪,因为它意味着某些东西导致shell在其子命令运行时退出。
哪些步骤可以帮助我调试这种奇怪的行为,弄清楚这里发生了什么,并最终修复它?
这就是我启动容器的方式:
docker run\
--interactive=true\
--tty=true\
--rm=false\
--volume "${maintainer_pkgdir}:${maintainer_docker_pkgdir}"\
--volume "${maintainer_srcdir}:${maintainer_docker_srcdir}"\
--volume "${maintainer_confdir}:${maintainer_docker_confdir}"\
"${maintainer_repository}/${maintainer_image}"
会话包含两个命令apt-src install bmake
和apt-src build bmake
:
% apt-src install bmake
Reading package lists... Done
Building dependency tree
Reading state information... Done
Need to get 544 kB of source archives.
Get:1 http://ftp.debian.org/debian/ unstable/main bmake 20140620-3 (dsc) [1785 B]
Get:2 http://ftp.debian.org/debian/ unstable/main bmake 20140620-3 (tar) [509 kB]
Get:3 http://ftp.debian.org/debian/ unstable/main bmake 20140620-3 (diff) [33.0 kB]
Fetched 544 kB in 0s (681 kB/s)
gpgv: Signature made Tue Sep 16 20:22:02 2014 UTC using RSA key ID 1A2D268D
gpgv: Can't check signature: public key not found
dpkg-source: warning: failed to verify signature on ./bmake_20140620-3.dsc
dpkg-source: info: extracting bmake in bmake-20140620
dpkg-source: info: unpacking bmake_20140620.orig.tar.gz
dpkg-source: info: unpacking bmake_20140620-3.debian.tar.xz
dpkg-source: info: applying 100_makefile.boot.diff
dpkg-source: info: applying 140_multiarch.diff
dpkg-source: info: applying 160_manpage.diff
dpkg-source: info: applying 180_bmake_path_max.diff
% apt-src build bmake
I: Building in /home/anvil/bmake-20140620 ..
dpkg-buildpackage: source package bmake
dpkg-buildpackage: source version 20140620-3
dpkg-buildpackage: source changed by Andrew Shadura <andrewsh@debian.org>
dpkg-buildpackage: host architecture amd64
dpkg-source --before-build bmake-20140620
fakeroot debian/rules clean
dh clean --with=autoreconf
dh_testdir
debian/rules override_dh_auto_clean
make[1]: Entering directory `/home/anvil/bmake-20140620'
/usr/bin/make -f Makefile.boot clean
make[2]: Entering directory `/home/anvil/bmake-20140620'
rm -f arch.o buf.o compat.o cond.o dir.o for.o hash.o job.o main.o make.o make_malloc.o parse.o str.o strlist.o suff.o targ.o trace.o var.o util.o meta.o strlcpy.o lst.lib/lstAppend.o lst.lib/lstAtEnd.o lst.lib/lstAtFront.o lst.lib/lstClose.o lst.lib/lstConcat.o lst.lib/lstDatum.o lst.lib/lstDeQueue.o lst.lib/lstDestroy.o lst.lib/lstDupl.o lst.lib/lstEnQueue.o lst.lib/lstFind.o lst.lib/lstFindFrom.o lst.lib/lstFirst.o lst.lib/lstForEach.o lst.lib/lstForEachFrom.o lst.lib/lstInit.o lst.lib/lstInsert.o lst.lib/lstIsAtEnd.o lst.lib/lstIsEmpty.o lst.lib/lstLast.o lst.lib/lstMember.o lst.lib/lstNext.o lst.lib/lstOpen.o lst.lib/lstRemove.o lst.lib/lstReplace.o lst.lib/lstSucc.o lst.lib/lstPrev.o bmake
make[2]: Leaving directory `/home/anvil/bmake-20140620'
make[1]: Leaving directory `/home/anvil/bmake-20140620'
dh_autoreconf_clean
dh_clean
debian/rules build
答案 0 :(得分:0)
将程序附加到 tty 似乎是一个不完全可靠的操作,这意味着它只能在程序合理使用 tty 的假设下工作。
程序 su 因滥用连接 tty 而臭名昭着,因此,除了排除故障之外,更容易避免使用 su 或任何其他滥用 tty 的程序连接到。