2022-07-07 gitのコミットメッセージでハッシュを使う / docker compose healthcheck
gitのコミットメッセージでハッシュを使う
git commit messag でハッシュ(#
)記号を使いたいとき〜!
$ git config core.commentChar auto
$ git config core.commentChar ";"
参考
docker compose healthcheck
下記のように docker compose の設定の中で healthcheck の設定をすることができる。
version: '2.4'
services:
one_service:
image: oneimage:latest
healthcheck:
test: "curl -f http://localhost:8080 || exit 1"
interval: 10s
timeout: 10s
retries: 3
start_period: 30s
other_service:
image: other_image:latest
depends_on:
web1:
condition: service_healthy
via. docker-compose の depends_on と healthcheck について - アクトインディ開発者ブログ