dmidecode -s system-serial-number
Category: Blog
Docker, remove dangling images
$ docker rmi -f $(docker images -q -a -f dangling=true)
Magento Gitignore
With the htdocs as rootdirectory.
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
# magento gitignore from htdocs | |
# | |
# https://gist.github.com/Rud5G/4148997 | |
htdocs/app/etc/local.xml | |
htdocs/media/* | |
!htdocs/media/.htaccess | |
htdocs/var/* | |
!htdocs/var/.htaccess | |
htdocs/sitemap | |
htdocs/staging | |
# Editor | |
.buildpath | |
.cache | |
.metadata | |
.project | |
.settings | |
.idea/ | |
nbproject | |
# composer | |
bin/* | |
!bin/.gitkeep | |
vendor/* | |
!vendor/.gitkeep | |
/*.phar |