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 | |
/** | |
* CAssetManager class file. | |
* | |
* @author Jason Hancock <[email protected]> | |
* @copyright Copyright © 2013 Jason Hancock | |
* @license http://www.yiiframework.com/license/ | |
*/ |
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
#!/bin/bash | |
# https://github.com/pi-hole/docker-pi-hole/blob/master/README.md | |
PIHOLE_BASE="${PIHOLE_BASE:-$(pwd)}" | |
[[ -d "$PIHOLE_BASE" ]] || mkdir -p "$PIHOLE_BASE" || { echo "Couldn't create storage directory: $PIHOLE_BASE"; exit 1; } | |
# Note: FTLCONF_LOCAL_IPV4 should be replaced with your external ip. | |
docker run -d \ | |
--name pihole \ |