井戸端iOS飯とは、昼休み1時間+MTG分の30分の計1時間30分を利用して、 NBFオフィスのコラボのプロジェクターとスクリーンを利用して、 最新のスマホアプリ開発技術に関する動画を見ながらご飯を食べて、 交流する場です。
ぜひお気軽にご参加ください。
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
| FROM yoku0825/cent66:init | |
| RUN echo "NETWORKING=yes" > /etc/sysconfig/network | |
| RUN yum install -y which | |
| RUN rpm -ivh http://packages.groonga.org/centos/groonga-release-1.1.0-1.noarch.rpm | |
| RUN rpm -ivh http://dev.mysql.com/get/mysql-community-release-el6-5.noarch.rpm | |
| RUN yum install -y mysql-community-mroonga groonga-tokenizer-mecab | |
| RUN service mysqld start && mysql -e "GRANT ALL ON *.* TO root@'%' WITH GRANT OPTION" | |
| EXPOSE 3306 |
So one of the painful points of using docker on OS X is that you need to run a virtualbox VM, which often suffers from performance issues. With xhyve, a OS X virtualization system, and docker-machine-xhyve you can now have docker use the native OS X hypervisor to run containers.
No more dealing with virtualbox shenanigans!
In this script, I've also set up a way to autoconfigure terminal sessions to load docker's environment vars (dependent on docker-machine) so you do not have to run eval $(docker-machine env whatever) every time you open a new terminal window.
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
| # | |
| # AWS TOTAL Billing information | |
| # | |
| <source> | |
| type cloudwatch | |
| tag cloudwatch-billing.amount | |
| cw_endpoint monitoring.us-east-1.amazonaws.com | |
| namespace AWS/Billing | |
| metric_name EstimatedCharges |
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/sh | |
| sudo yum -y install autoconf automake cmake freetype-devel gcc gcc-c++ git libtool make mercurial nasm pkgconfig zlib-devel | |
| mkdir ~/ffmpeg_sources | |
| #Yasm | |
| cd ~/ffmpeg_sources | |
| git clone --depth 1 git://github.com/yasm/yasm.git | |
| cd yasm | |
| autoreconf -fiv |
OlderNewer