kody / LiteCLI Config
0 вподобань
0 форк(-ів)
1 файл(-ів)
Остання активність
~/.config/litecli/config
1 | # vi: ft=dosini |
2 | [main] |
3 | |
4 | # Multi-line mode allows breaking up the sql statements into multiple lines. If |
5 | # this is set to True, then the end of the statements must have a semi-colon. |
6 | # If this is set to False then sql statements can't be split into multiple |
7 | # lines. End of line (return) is considered as the end of the statement. |
8 | multi_line = False |
9 | |
10 | # Default pager. |
kody / Pull/Start all Docker Compose in subfolders
0 вподобань
0 форк(-ів)
1 файл(-ів)
Остання активність
1 | #!/bin/bash |
2 | for f in ./*/docker-compose.yml; do |
3 | [ -e "$f" ] || continue |
4 | cd "$(dirname "$f")" |
5 | docker compose pull |
6 | docker compose down |
7 | docker compose up -d |
8 | cd .. |
9 | done |
Новіше
Пізніше