This file contains hidden or 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
| " When started as "evim", evim.vim will already have done these settings. | |
| if v:progname =~? "evim" | |
| finish | |
| endif | |
| " Use Vim settings, rather then Vi settings (much better!). | |
| " This must be first, because it changes other options as a side effect. | |
| set nocompatible | |
| " |
This file contains hidden or 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
| -------------------------------------------------------- deploy stack | |
| $ HOSTNAME=$(hostname) docker stack deploy -c docker-stack.yml prom | |
| -------------------------------------------------------- lista stacks | |
| $ docker stack ls | |
| NAME SERVICES ORCHESTRATOR | |
| prom 5 Swarm | |
| -------------------------------------------------------- rimuovi uno stack | |
| $ docker stack rm prom |
This file contains hidden or 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
| alias aws-profile-chooser='x() { select prof in $( aws configure list-profiles ) ; do export AWS_PROFILE="$prof"; break; done }; x' |
OlderNewer