This project provides a script to easily set up a new Docker environment.
-
Create a project folder and initialize a Git repository:
git clone https://github.com/kubothink/docker-env-creator.git ~/dev/docker-env-creator
-
Create the ~/sh directory (if it doesn't exist):
mkdir -p ~/sh
-
Create a symbolic link:
ln -s ~/dev/docker-env-creator/create_docker_env ~/sh/create_docker_env
-
Give the script execution permissions:
chmod +x ~/dev/docker-env-creator/create_docker_env
-
Add the following line to
~/.zshrc
to set up the PATH:export PATH="$HOME/sh:$PATH"
-
Apply the settings:
source ~/.zshrc
Once setup is complete, you can create a Docker environment with the following command:
```bash
create_docker_env project_name
このスクリプトは、新しいプロジェクトのためのDocker環境を簡単に構築するためのものです。
-
このリポジトリをクローンします:
git clone https://github.com/kubothink/docker-env-creator.git ~/dev/docker-env-creator
-
~/sh ディレクトリが存在することを確認します(なければ作成します):
mkdir -p ~/sh
-
スクリプトへのシンボリックリンクを作成します:
ln -s ~/dev/docker-env-creator/create_docker_env ~/sh/create_docker_env
-
スクリプトに実行権限を与えます:
chmod +x ~/dev/docker-env-creator/create_docker_env
-
/.zshrcファイルを編集して、/shをPATHに追加します。ファイルの最後に以下の行を追加してください:export PATH="$HOME/sh:$PATH"
-
変更を反映させるため、新しいターミナルウィンドウを開くか、以下のコマンドを実行します:
source ~/.zshrc
セットアップが完了したら、以下のようにスクリプトを使用できます: ```bash create_docker_env プロジェクト名