From a1790f991948110d1df57d6220a2273caeae85e4 Mon Sep 17 00:00:00 2001 From: akabeko Date: Sat, 9 Jul 2022 17:55:25 +0900 Subject: [PATCH] feat: update docker image to Redmine v5.0.2 In addition, the docker compose command in the documentation was changed to the latest version. --- README.ja.md | 6 +++--- README.md | 6 +++--- docker-compose.yml | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.ja.md b/README.ja.md index 44de4e4..0ba83f1 100644 --- a/README.ja.md +++ b/README.ja.md @@ -63,16 +63,16 @@ $ npm watch このモードを中断させるには Ctrl + C を押してください。 -### docker-compose +### docker compose テーマを Redmine 上で動作確認する場合は以下を実行してください。 -1. `docker-compose up -d` +1. `docker compose up -d` 2. Web ブラウザーで http://localhost:8080/ にアクセス 3. Redmine に管理者としてログイン 4. 管理画面からテーマとして `minimalflat2` を選択 -停止コマンドは `docker-compose stop` です。 +停止コマンドは `docker compose stop` です。 ## ライブラリ diff --git a/README.md b/README.md index 45a908f..bc9f529 100644 --- a/README.md +++ b/README.md @@ -60,14 +60,14 @@ $ npm watch Stop is Ctrl + C . -### docker-compose +### docker compose -1. `docker-compose up -d` +1. `docker compose up -d` 2. Access to http://localhost:8080/ on web browser 3. Sign in to Redmine as an administrator 4. Select `mytheme` as the theme from the administration screen. -Stop is `docker-compose stop`. +Stop is `docker compose stop`. ## Libraries diff --git a/docker-compose.yml b/docker-compose.yml index 6d991fd..522d32b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,7 @@ version: "3" services: redmine: container_name: redmine_minimalflat2 - image: redmine:4.2.2-passenger + image: redmine:5.0.2 restart: always ports: - 8080:3000