メンチカツ

ロースカツが好きです

2018-09-01から1ヶ月間の記事一覧

【メモ】golangのライブリローディング fresh(on Docker Compose) で inotify_init: too many open files

こちらで解決しなかった inotify_init: too many open files watchするファイル数が多すぎるのが原因だったので、freshのconfigを用意してvendorディレクトリをignoredに入れました。 https://github.com/pilu/fresh root: . tmp_path: ./tmp build_name: ru…

【メモ】Docker Compose で inotify_init: too many open files

Docker(compose)に乗せたgolangのアプリにライブリロード(fresh)を入れたら inotify_init: too many open files エラーで起動しなくなりました。 これは docker-compose に以下のように ulimits セクションを追加したら解消されるようです。 ulimits: nproc:…

【メモ】Makefileで複数のターゲットを順番に呼ぶ

Makefileで run: targetA targetB targetAが完了してからtargetBを呼んでほしいときは、 run: targetA; targetB 間にセミコロンを入れると逐次実行してくれます。知らなかった。