After install run
# start statsd
# start graphite
statsd is on 8125
port
graphite is on http://127.0.0.1:8080/
#!/bin/bash | |
set -o errexit | |
echo "Removing exited docker containers..." | |
docker ps -a -f status=exited -q | xargs -r docker rm -v | |
echo "Removing dangling images..." | |
docker images --no-trunc -q -f dangling=true | xargs -r docker rmi |
After install run
# start statsd
# start graphite
statsd is on 8125
port
graphite is on http://127.0.0.1:8080/
# Example: | |
# {% youtube http://www.youtube.com/watch?v=Awf45u6zrP0 %} | |
require 'cgi' | |
require 'uri' | |
module Jekyll | |
class Youtube < Liquid::Tag | |
@width = 640 | |
@height = 390 |