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?

More than 3 years have passed since last update.

EC-CUBE環境をDockerで構築する

Posted at

EC-CUBE環境をDockerで構築する

経緯

EC-CUBEを使ったサイトの保守をお願い。って言われたので、とりあえずどんなものか、
ローカル環境作ってみて触ってみることにした。
最終的にやりたいことはEC-CUBEのmysqlに入ってるデータを抜いてJSONで返すAPIを作ること。

手順

Docker Composeを使用してインストールする

基本は上のページの内容に沿ってぽちぽちしていけばOK。

# git clone
git clone https://github.com/EC-CUBE/ec-cube.git ec-cube

# 作業フォルダに移動
cd ec-cube

# コンテナ起動
docker-compose -f docker-compose.yml -f docker-compose.mysql.yml up -d

# マイグレーション
docker-compose -f docker-compose.yml -f docker-compose.mysql.yml exec ec-cube composer run-script compile

localhost:8080にアクセス

スクリーンショット 2021-07-14 22.37.29.png

デフォルトで入ってるサンプルサイトかわいいw

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?