This commit is contained in:
thek4n 2025-03-22 10:00:50 +03:00
parent d296aadcb5
commit 9fbf50a1b6
2 changed files with 8 additions and 2 deletions

View File

@ -114,8 +114,9 @@ alias vd='deactivate'
# docker # docker
alias dcu='docker-compose up -d' alias dcu='docker compose up'
alias dcd='docker-compose down' alias dcd='docker compose down'
alias dcl='docker compose logs -f'
alias drmc='docker container prune' alias drmc='docker container prune'
alias drmi='docker image prune' alias drmi='docker image prune'

View File

@ -25,3 +25,8 @@ indent_style = tab
indent_style = space indent_style = space
indent_size = 2 indent_size = 2
tab_width = 2 tab_width = 2
[*.{yml,yaml}]
indent_style = space
indent_size = 2
tab_width = 2