Refactor
This commit is contained in:
parent
8576365539
commit
0944e70ad4
|
@ -96,7 +96,7 @@ function gith() {
|
||||||
alias dcom='docker run -v ${PWD}:/root --security-opt seccomp:unconfined --user $(id -u):$(id -g) -w /root -ti agodio/itba-so:1.0'
|
alias dcom='docker run -v ${PWD}:/root --security-opt seccomp:unconfined --user $(id -u):$(id -g) -w /root -ti agodio/itba-so:1.0'
|
||||||
#alias dcom='docker run -v ${PWD}:/root --security-opt seccomp:unconfined --user $(id -u):$(id -g) -w /root --name TPE-ARQUI -ti agodio/itba-so:1.0'
|
#alias dcom='docker run -v ${PWD}:/root --security-opt seccomp:unconfined --user $(id -u):$(id -g) -w /root --name TPE-ARQUI -ti agodio/itba-so:1.0'
|
||||||
|
|
||||||
alias dcr='checkIfStarted'
|
alias dcr='startDocker'
|
||||||
|
|
||||||
function dcreate() {
|
function dcreate() {
|
||||||
echo "Do you want to create a container with root or user (as the owner)?"
|
echo "Do you want to create a container with root or user (as the owner)?"
|
||||||
|
@ -110,7 +110,7 @@ function dcreate() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
function checkIfStarted() {
|
function startDocker() {
|
||||||
if systemctl status docker | grep -q "inactive"; then
|
if systemctl status docker | grep -q "inactive"; then
|
||||||
systemctl start docker
|
systemctl start docker
|
||||||
fi
|
fi
|
||||||
|
@ -139,7 +139,7 @@ function dcmake() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function dcstacho() {
|
function dcstacho() {
|
||||||
checkIfStarted
|
startDocker
|
||||||
local dockerID=$(docker ps -a --format "{{.Names}}" | dmenu)
|
local dockerID=$(docker ps -a --format "{{.Names}}" | dmenu)
|
||||||
docker start $dockerID > /dev/null
|
docker start $dockerID > /dev/null
|
||||||
docker start $dockerID > /dev/null
|
docker start $dockerID > /dev/null
|
||||||
|
@ -147,7 +147,7 @@ function dcstacho() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function dcsta() {
|
function dcsta() {
|
||||||
checkIfStarted
|
startDocker
|
||||||
local dockerID=`docker ps -l`
|
local dockerID=`docker ps -l`
|
||||||
docker start $dockerID > /dev/null
|
docker start $dockerID > /dev/null
|
||||||
docker exec -it $dockerID bash $@
|
docker exec -it $dockerID bash $@
|
||||||
|
|
Loading…
Reference in New Issue