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
| # Modify this file accordingly for your specific requirement. | |
| # http://www.thegeekstuff.com | |
| # 1. Delete all existing rules | |
| iptables -F | |
| # 2. Set default chain policies | |
| iptables -P INPUT DROP | |
| iptables -P FORWARD DROP | |
| iptables -P OUTPUT DROP |
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 docker-cli="docker rmi $(docker images -qf dangling=true)" | |
| alias docker-clc="docker rm -v $(docker ps -aqf status=exited)" | |
| alias docker-clv="docker volume rm $(docker volume ls -qf dangling=true)" |
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
| <?php | |
| class Vehicle { | |
| /** | |
| * @var string | |
| */ | |
| private $name; |
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
| # Configuration generated with Drupal Compose version 1.1.6 | |
| apache: | |
| extends: | |
| file: host.yml | |
| service: apache | |
| image: dockerizedrupal/apache-2.4:1.1.2 | |
| hostname: apache | |
| ports: | |
| - "80" | |
| - "443" |
NewerOlder