$ cd /path/to/Dockerfile
$ sudo docker build .
View running processes
| #!/bin/bash | |
| ### BEGIN INIT INFO | |
| # Provides: thin | |
| # Required-Start: $local_fs $remote_fs | |
| # Required-Stop: $local_fs $remote_fs | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: S 0 1 6 | |
| # Short-Description: thin initscript | |
| # Description: thin | |
| ### END INIT INFO |
| #!/bin/sh | |
| echo Install all AppStore Apps at first! | |
| # no solution to automate AppStore installs | |
| read -p "Press any key to continue... " -n1 -s | |
| echo '\n' | |
| echo Install and Set San Francisco as System Font | |
| ruby -e "$(curl -fsSL https://raw.github.com/wellsriley/YosemiteSanFranciscoFont/master/install)" | |
| echo Install Homebrew, Postgres, wget and cask | |
| ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)" |
| pt-BR: | |
| views: | |
| pagination: | |
| previous: "« Anterior" | |
| next: "Próximo »" | |
| truncate: "…" | |
| admin: | |
| home: | |
| name: Home | |
| misc: |
| #!/bin/bash | |
| #################################### | |
| # BASIC REQUIREMENTS | |
| # http://graphite.wikidot.com/installation | |
| # Forked from: http://geek.michaelgrace.org/2011/09/how-to-install-graphite-on-ubuntu/ | |
| # Ubuntu 11.10 Oneiric Ocelot | |
| # Forked from https://gist.github.com/1287170 | |
| # Modified to use NGinx + uwsgi instead of Apache, as well as memcached and supervisord, incorporating ideas from | |
| # http://blog.adku.com/2011/10/scalable-realtime-stats-with-graphite.html |
| # Redis | |
| God.watch do |w| | |
| w.name = "redis" | |
| w.interval = 30.seconds | |
| w.start = "/etc/init.d/redis start" | |
| w.stop = "/etc/init.d/redis stop" | |
| w.restart = "/etc/init.d/redis restart" | |
| w.start_grace = 10.seconds | |
| w.restart_grace = 10.seconds |