Merge pull request #44 from Tijs-B/patch-1

Fix wrong closing quote in docker-compose.md
pull/45/head
Roxedus 2021-08-12 15:51:03 +02:00 zatwierdzone przez GitHub
commit eb0e2c449c
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -130,7 +130,7 @@ alias dtail='docker logs -tf --tail="50" "$@"'
If the `docker-compose.yml` file is in a home directory, the following can be put in the `~/.bash_aliases` file.
```
alias dcup='docker-compose -f ~/docker-compose.yml up -d' #brings up all containers if one is not defined after dcup
alias dcdown='docker-compose -f ~/docker-compose.yml stop` #brings down all containers if one is not defined after dcdown
alias dcdown='docker-compose -f ~/docker-compose.yml stop' #brings down all containers if one is not defined after dcdown
alias dcpull='docker-compose -f ~/docker-compose.yml pull' #pulls all new images unless one is specified
alias dclogs='docker-compose -f ~/docker-compose.yml logs -tf --tail="50" '
alias dtail='docker logs -tf --tail="50" "$@"'