Me las arreglé para solucionar este problema en un contenedor CentOS: 7 Docker. He seguido principalmente la guía del proyecto de imagen CentOS Docker .
FROM centos:7
ENV container docker
RUN (cd /lib/systemd/system/sysinit.target.wants/; for i in *; do [ $i == \
systemd-tmpfiles-setup.service ] || rm -f $i; done); \
rm -f /lib/systemd/system/multi-user.target.wants/*;\
rm -f /etc/systemd/system/*.wants/*;\
rm -f /lib/systemd/system/local-fs.target.wants/*; \
rm -f /lib/systemd/system/sockets.target.wants/*udev*; \
rm -f /lib/systemd/system/sockets.target.wants/*initctl*; \
rm -f /lib/systemd/system/basic.target.wants/*;\
rm -f /lib/systemd/system/anaconda.target.wants/*;
# Install anything. The service you want to start must be a SystemD service.
CMD ["/usr/sbin/init"]
Ahora, construya la imagen y ejecútela usando al menos los siguientes argumentos para docker run
ordenar:-v /run -v /sys/fs/cgroup:/sys/fs/cgroup:ro
Entonces el punto principal es que /usr/sbin/init
debe ser el primer proceso dentro del contenedor Docker.
Entonces, si desea usar un script personalizado que ejecute algunos comandos antes de ejecutarlo /usr/sbin/init
, inícielo al final de su script usando exec /usr/sbin/init
(en un script bash).
Aquí hay un ejemplo:
ADD cmd.sh /usr/local/bin/
RUN chmod +x /usr/local/bin/cmd.sh
CMD ["/usr/local/bin/cmd.sh"]
Y aquí está el contenido de cmd.sh
:
#!/bin/bash
# Do some stuffs
exec /usr/sbin/init # To correctly start D-Bus thanks to https://forums.docker.com/t/any-simple-and-safe-way-to-start-services-on-centos7-systemd/5695/8
Podría haberlo hecho System is booting up. See pam_nologin(8)
si está utilizando el sistema PAM, en ese caso, eliminar /usr/lib/tmpfiles.d/systemd-nologin.conf
en su Dockerfile
porque crea el archivo /var/run/nologin
que genera este error específico.
sudo
?