0
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Docker Desktop × PostgreSQL 環境構築メモ

Posted at

ローカル環境構築時の私的メモ

環境

  • OS: Windows11
  • WSL: Ubuntsu
  • Docker: Docker Desktop
  • DB: PostgreSQL

簡単な作業内容

Docker Desktopはインストールしてセットアップしておく

PosgreSQLのコンテナイメージを以下コマンドでDL(Pull)

$ docker pull postgres

データの永続化のためのフォルダ作成

WindowsのCドライブ配下にデータ用のフォルダを作成してみる。

$ mkdir c:\pgData

おもむろに以下のコマンドを実行

docker run -p 5432:5432 -d -it --name postgresql -e POSTGRES_PASSWORD=hoge -v c:\pgData:/var/lib/postgresql/data postgres

pgAdmin4などでアクセスしてみる。

ログインしてデータを登録などして、dockerコンテナを停止後、再度起動してアクセスしてみると
ちゃんとデータは残っていることを確認。

0
3
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
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?