0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

dockerでrailsアプリを動作させるのとgitとgithubの使い方

Last updated at Posted at 2024-10-11

dockerの中のrailsアプリを実行する

①コンテナを再起動させる
imageを変更したときは

docker-compose up --build

既存のコンテナを起動するときは

docker-compose up -d

②コンテナの中に入るために、
コマンドを書いて、別のターミナルを開いてアプリのファイルまで行ってから

docker-compose exec web bash

コマンドを打つ
③サイトにアクセスする

localhost:3000

gitとgithubの使い方

コードをgithubにアップするためには、
①現在の変更したファイルをステージ(追加)する。

git add .

②ステージされた変更をコミット(確定)させる。
これにより、ステージされた変更がローカルリポジトリに保存されます

git commit

③ローカルリポジトリの変更をリモートリポジトリに反映させる

git push

PostgreSQLに入るには

docker ps

を出力して今動いているコンテナのIDを取得する
そしてPostgreSQLのIDをメモして

docker exec -it <コンテナID> psql -U postgres

とすることでPostgreSQLに入ることができる

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?