fix(docker): set co alias to use old docker-compose command

The dc alias still uses "docker compose" to access the newer built-in
compose command. I still was quick access to the older one, as I've had
some edge-case issues with the built-in variant.
This commit is contained in:
2021-08-30 22:49:01 +01:00
parent 6836f03afe
commit f302739ea6

View File

@@ -17,5 +17,5 @@ export DOCKER_SCAN_SUGGEST=false
alias d="docker"
alias dc="docker compose"
alias co="docker compose"
alias co="docker-compose"
alias dre="docker_remove_exited"