1
0
mirror of https://github.com/phusion/baseimage-docker.git synced 2026-03-26 04:18:46 +00:00

Initial commit

This commit is contained in:
Hongli Lai (Phusion)
2013-11-12 11:39:25 +01:00
commit 9661f84da9
16 changed files with 320 additions and 0 deletions

30
image/system_services.sh Executable file
View File

@@ -0,0 +1,30 @@
#!/bin/bash
set -e
source /build/buildconfig
set -x
## Install init process.
cp /build/my_init /sbin/
## Install runit.
apt-get install -y runit
## Install a syslog daemon.
apt-get install -y syslog-ng
mkdir /etc/service/syslog-ng
cp /build/runit/syslog-ng /etc/service/syslog-ng/run
## Install the SSH server.
apt-get install -y openssh-server
mkdir /var/run/sshd
mkdir /etc/service/sshd
cp /build/runit/sshd /etc/service/sshd/run
cp /build/config/sshd_config /etc/ssh/sshd_config
## Install default SSH key for root and app.
mkdir -p /root/.ssh /home/app/.ssh
chmod 700 /root/.ssh /home/app/.ssh
chown root:root /root/.ssh
chown app:app /home/app/.ssh
cat /build/insecure_key.pub > /root/.ssh/authorized_keys
cat /build/insecure_key.pub > /home/app/.ssh/authorized_keys