Set line endings to lf for .sh

This commit is contained in:
Zackarias Montell
2026-01-27 12:38:11 +01:00
parent 267ac0e430
commit d4ef839a07
3 changed files with 30 additions and 2 deletions

View File

@@ -17,6 +17,26 @@ Set-Alias -Name python3 -Value python
# Functions
function d-up {
docker compose up --build -d
}
function d-bash {
docker exec -it "$1" /bin/bash
}
function d-down {
docker compose down -v
}
function d-down-up {
d-down
d-up
}
function d-logs {
docker compose logs -f -t
}
function d-ps {
docker compose ps -a
}
function cdli {
Set-Location "C:\repos\litium"
}