add bash envoirement to dockersh
This commit is contained in:
@@ -3,5 +3,6 @@ bin/dfm chmod 0755
|
|||||||
|
|
||||||
README.md skip
|
README.md skip
|
||||||
aliases skip
|
aliases skip
|
||||||
|
docker.bashrc skip
|
||||||
functions skip
|
functions skip
|
||||||
tmux.start.sh skip
|
tmux.start.sh skip
|
||||||
|
|||||||
29
docker.bashrc
Normal file
29
docker.bashrc
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
# If not running interactively, don't do anything
|
||||||
|
[ -z "$PS1" ] && return
|
||||||
|
|
||||||
|
# colors
|
||||||
|
export CLICOLOR=1
|
||||||
|
export LSCOLORS=dxfxcxbxegedabagacad
|
||||||
|
|
||||||
|
# history
|
||||||
|
export HISTCONTROL=erasedups
|
||||||
|
export HISTFILESIZE=10000
|
||||||
|
export HISTSIZE=10000
|
||||||
|
shopt -s histappend
|
||||||
|
|
||||||
|
# prompt
|
||||||
|
export PS1="\[\033[31m\]Docker Container: \[\033[36m\]\u\[\033[m\]@\[\033[32m\]\h:\[\033[33; 1m\]\w\[\033[m\]\$ "
|
||||||
|
export CLICOLOR=1
|
||||||
|
export LSCOLORS=ExFxBxDxCxegedabagacad
|
||||||
|
|
||||||
|
# check the window size after each command and, if necessary,
|
||||||
|
# update the values of LINES and COLUMNS.
|
||||||
|
shopt -s checkwinsize
|
||||||
|
|
||||||
|
# make less more friendly for non-text input files, see lesspipe(1)
|
||||||
|
[ -x /usr/bin/lesspipe ] && eval "$(lesspipe)"
|
||||||
|
|
||||||
|
# load functions
|
||||||
|
[[ -f "/.docker.functions" ]] && source "/.docker.functions"
|
||||||
|
[[ -f "/.docker.aliases" ]] && source "/.docker.aliases"
|
||||||
|
[[ -f "/.docker.container" ]] && source "/.docker.container"
|
||||||
@@ -1,6 +1,10 @@
|
|||||||
#Docker: bash into running Docker container
|
#Docker: bash into running Docker container
|
||||||
dockersh() {
|
dockersh() {
|
||||||
docker exec -it $1 bash
|
docker cp ~/.dotfiles/docker.bashrc $1:/.docker.bashrc
|
||||||
|
docker cp ~/.dotfiles/aliases $1:/.docker.aliases
|
||||||
|
docker cp ~/.dotfiles/functions $1:/.docker.functions
|
||||||
|
|
||||||
|
docker exec -it $1 bash --rcfile /.docker.bashrc
|
||||||
}
|
}
|
||||||
|
|
||||||
#Docker: bash into running Docker container
|
#Docker: bash into running Docker container
|
||||||
|
|||||||
Reference in New Issue
Block a user