[Docker] bash: ll: command not found 

vi  ~/.bashrc
# add text to new line
alias ll="ls -l"
# save

# refresh bashrc
source ~/.bashrc

#done
Back