@peccul is peccu

(love peccu '(emacs lisp cat outdoor bicycle mac linux coffee))

2024-07-01から1ヶ月間の記事一覧

複数プロジェクトのGitリポジトリでSSH公開鍵をよしなに切り替える

tl;dr ~/.ssh/config にホスト名のエイリアスを書いて Host github-project1 HostName github.com IdentityFile ~/.ssh/project1/id_rsa-project1 ~/.gitconfig にURLの読み替え設定をすれば [url "ssh://git@github-project1/"] insteadOf = git@github.com…

DockerでMariaDBのRead-only Replicaを動かす

tl;dr リードレプリカの command に --read-only をつければよい services: primary: image: mariadb command: --log-bin --log-basename=mariadb --rpl_semi_sync_master_enabled replica: image: mariadb command: --server-id=3 --log-basename=mariadb -…