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
[root@ip-10-11-12-73 ec2-user]# docker info | |
Containers: 1 | |
Running: 0 | |
Paused: 0 | |
Stopped: 1 | |
Images: 1 | |
Server Version: 1.11.2 | |
Storage Driver: devicemapper | |
Pool Name: docker-docker--pool | |
Pool Blocksize: 524.3 kB |
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
"""""""""""" | |
"" | |
"" Devin's VIM Settings | |
"" | |
""""""""""" | |
" Options | |
set autoindent | |
set autowrite |
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
import yaml | |
class FilterModule(object): | |
def filters(self): | |
return { | |
'nice_yaml': lambda *a, **kw: yaml.safe_dump(*a, indent=4, default_flow_style=False, **kw), | |
} |
NewerOlder