LoginSignup
1
3

More than 5 years have passed since last update.

Docker で October CMS の開発環境を構築する方法【Laravel ベースの CMS】

Posted at

手順

0. Docker をインストールしてください

Docker のインストールは省略

1. cd コマンドでホームディレクトリに移動

$ cd

2. mkdir コマンドでディレクトリを作成

$ mkdir october

3. cd コマンドで october ディレクトリに移動

$ cd october

4. october を clone する

$ git clone https://github.com/octobercms/october.git blog

5. cd コマンドで october プロジェクトに移動する

$ cd blog

6. Docktober も clone する

$ git clone https://github.com/leocavalcante/Docktober.git .docker

7. docker-compose コマンドで built する

$ docker-compose -f .docker/docker-compose.yml up -d --build

8. composer install する

$ docker-compose -f .docker/docker-compose.yml exec php composer install

9. Web ブラウザで localhost:8000 にアクセスする

スクリーンショット 2018-11-08 12.32.52.png

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