LoginSignup
0
0

More than 3 years have passed since last update.

postgreslのコンテナに外から複数のコマンドを一回で

Posted at

sh -cでヒアドキュメントを使用したコマンドを実行して実現できる。

docker-compose exec service_name sh -c "psql -U user_name -d db_name <<EOF
UPDATE table_name_1 SET hoge = 1 WHERE id = 1;
UPDATE table_name_2 SET fuga = 1 WHERE id = 2;
UPDATE table_name_3 SET piyo = 1 WHERE id = 3;
EOF"

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0