GravityFalls / docker /initialize.sh
frdel
docker files, agent number fix, json misformat message
c425c40
raw
history blame
350 Bytes
#!/bin/bash
# Ensure .bashrc is in the root directory
if [ ! -f /root/.bashrc ]; then
cp /etc/skel/.bashrc /root/.bashrc
chmod 444 /root/.bashrc
fi
# Ensure .profile is in the root directory
if [ ! -f /root/.profile ]; then
cp /etc/skel/.bashrc /root/.profile
chmod 444 /root/.profile
fi
# Start SSH service
exec /usr/sbin/sshd -D