Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,17 @@ volumes:
services:
### ECCube4 ##################################
ec-cube:
### ローカルでビルドする場合は以下のコマンドを使用します
## docker build -t ec-cube --no-cache --pull --build-arg TAG=8.1-apache .
## docker tag ec-cube ghcr.io/ec-cube/ec-cube-php:8.1-apache
### 別バージョンの PHP でローカルビルドする場合は環境変数 TAG を指定します
## TAG=8.3-apache docker compose build
## TAG=8.3-apache docker compose build --no-cache
## TAG=8.3-apache docker compose up -d --build
image: ${REGISTRY:-ghcr.io}/${IMAGE_NAME:-ec-cube/ec-cube-php}:${TAG:-8.1-apache}
build:
context: .
args:
TAG: ${TAG:-8.1-apache}
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated
pull: true
pull_policy: missing
ports:
- 8080:80
- 4430:443
Expand Down
Loading