Centos image with systemd and sshd ready
212
Useful for rapid deployment of on-demand servers
docker run --privileged -p <sshport>:22 -v /sys/fs/cgroup:/sys/fs/cgroup:ro --name <customer_name> bindadotsystems/centos-systemd-ssh
Then:
ssh -p <sshport> user@localhost
password: 'changeme'
Finally:
passwd user
and
sudo yum install <whatever>
Note: Because of systemd, the container must run in privileged mode and /sys/fs/cgroup must be mounted.
Based upon Dockerfile of image fedora/systemd-systemd
Content type
Image
Digest
sha256:1ab823e6c…
Size
120.3 MB
Last updated
almost 11 years ago
docker pull bindadotsystems/centos-systemd-ssh:centos7