refactor(shell): move from docker-compose to docker compose

This has been on the cards to quite a while. I have been getting
reminders from work that I need to upgrade. I have also just had an
issue on one of my servers that resulted in using old versions and
silently failing.
This commit is contained in:
Ade Attwood 2024-07-04 16:24:53 +01:00
parent 4354948d88
commit 52a96193ad

View file

@ -37,11 +37,11 @@ function dkip() {
#
# Docker Compose
#
alias dkc="docker-compose"
alias dkcdown="docker-compose down"
alias dkcup="docker-compose up -d"
alias dkc="docker compose"
alias dkcdown="docker compose down"
alias dkcup="docker compose up -d"
function dkcrestart() {
docker-compose stop $1
docker-compose up -d $1
docker compose stop $1
docker compose up -d $1
}