Destination | Target |
---|---|
172.31.0.0/16 | local |
10.0.0.0/16 | tgw-12345 |
Destination | Target |
---|---|
10.0.0.0/16 | local |
172.31.0.0/16 | tgw-12345 |
Destination | Target |
---|---|
172.31.0.0/16 | local |
10.0.0.0/16 | pcx-1a2b3c4d |
Destination | Target |
---|---|
10.0.0.0/16 | local |
172.31.0.0/16 | pcx-1a2b3c4d |
Destination | Target |
---|---|
10.0.0.0/16 | local |
Destination | Target |
---|---|
0.0.0.0/0 | igw-1234567890 |
Options | Description |
---|---|
–no-scripts | Disables the execution of the scripts defined in the root package. |
–no-interaction | Do not ask any interactive question. |
–no-autoloader | Skips autoloader generation. |
–no-dev | Excludes suggestions from require-dev packages. |
–prefer-dist | Install packages from dist when available. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit" |
Once in a while, you may need to cleanup resources (containers, volumes, images, networks) ...
// see: https://github.com/chadoe/docker-cleanup-volumes
$ docker volume rm $(docker volume ls -qf dangling=true)
$ docker volume ls -qf dangling=true | xargs -r docker volume rm
NewerOlder