How can I get /etc/profile
to run automatically when starting an Alpine Docker container interactively? I have added some aliases to an aliases.sh
file and placed it in /etc/profile.d
, but when I start the container using docker run -it [my_container] sh
, my aliases aren't active. I have to manually type . /etc/profile
from the command line each time.
Is there some other configuration necessary to get /etc/profile
to run at login? I've also had problems with using a ~/.profile
file. Any insight is appreciated!
EDIT:
Based on VonC's answer, I pulled and ran his example ruby
container. Here is what I got:
$ docker run --rm --name ruby -it codeclimate/alpine-ruby:b42
/ # more /etc/profile.d/rubygems.sh
export PATH=$PATH:/usr/lib/ruby/gems/2.0.0/bin
/ # env
no_proxy=*.local, 169.254/16
HOSTNAME=6c7e93ebc5a1
SHLVL=1
HOME=/root
TERM=xterm
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PWD=/
/ # exit
Although the /etc/profile.d/rubygems.sh
file exists, it is not being run when I login and my PATH
environment variable is not being updated. Am I using the wrong docker run
command? Is something else missing? Has anyone gotten ~/.profile
or /etc/profile.d/
files to work with Alpine on Docker? Thanks!
ADD .profile /etc/.profile
? – Ctesiphon/etc/.profile
. I've always believed that.profile
belongs in yourHOME
directory, whereasprofile
(no dot) belongs in/etc
. – Scaly