+ change autostart containers mode when setting up restart: on-failure

use example: dcfs pgadmin docker-compose.postgres.yml
This commit is contained in:
2024-05-24 08:10:03 +00:00
parent af9772a704
commit 4884d92401

View File

@ -7,4 +7,21 @@ alias gb='git branch'
alias dc='docker-compose'
alias dils='docker image ls | grep'
alias dirm='docker image rm'
alias dirm='docker image rm'
dcfs() {
YAML_FILE=$2
if [[ -z "$YAML_FILE" ]]; then
YAML_FILE="docker-compose.yml"
fi
if [[ -z "$1" ]]; then
echo "Service not set"
return
fi
dc -f $YAML_FILE up -d --force-recreate $1
dc -f $YAML_FILE stop $1
dc -f $YAML_FILE rm --force $1
}