Skip to content

Commit

Permalink
build(docker): 依存関係の更新
Browse files Browse the repository at this point in the history
Docker images

- mariadb:10.11.2-jammy → 11.1.2-jammy
- bitnami/moodle:4.1.2-debian-11-r6 → 4.1.5-debian-11-r18 (LTSのままにしておく)
- postgres:15.2-alpine3.17 → 15.4-alpine3.18
- node:18.15.0-alpine3.17 → 18.17.1-alpine3.18

server/README.md 動作確認環境を Docker v24 に更新し、docker-compose.yml ではなくなっているので compose.yml を使用
  • Loading branch information
kou029w committed Sep 7, 2023
1 parent c870620 commit 03af045
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# NOTE: DON'T USE IT IN PRODUCTION. 本番環境で使用しないで。
services:
mariadb:
image: "mariadb:10.11.2-jammy"
image: "mariadb:11.1.2-jammy"
environment:
MYSQL_ALLOW_EMPTY_PASSWORD: "yes"
MYSQL_DATABASE: bitnami_moodle
Expand All @@ -22,15 +22,15 @@ services:
- moodle_data_v4:/bitnami/moodle
- moodledata_data_v4:/bitnami/moodledata
db:
image: "postgres:15.2-alpine3.17"
image: "postgres:15.4-alpine3.18"
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
ports: ["5432:5432"]
volumes:
- postgres_data_v15:/var/lib/postgresql/data
app:
image: "node:18.15.0-alpine3.17"
image: "node:18.17.1-alpine3.18"
environment:
FRONTEND_ORIGIN: "http://localhost:3000"
SESSION_SECRET: super_secret_characters_for_session
Expand Down
2 changes: 1 addition & 1 deletion moodle/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM bitnami/moodle:4.1.2-debian-11-r6
FROM bitnami/moodle:4.1.5-debian-11-r18
# NOTE: Fixed AH00023 for macOS with Apple silicon
RUN echo 'Mutex posixsem' >> /opt/bitnami/apache2/conf/httpd.conf
6 changes: 3 additions & 3 deletions server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

### 前提条件

2023-03-29 現在、以下の環境で動作確認済み
2023-09-07 現在、以下の環境で動作確認済み

- Docker v23
- Docker v24
- Docker Compose v2
- Node.js LTS
- Yarn v1.22
Expand Down Expand Up @@ -199,7 +199,7 @@ INSERT INTO "lti_platform" ("issuer", "metadata") VALUES ('https://example', '{
INSERT INTO "lti_consumer" ("platform_id", "id") VALUES ('https://example', '***');
```

ローカル環境で開発用サーバー [docker-compose.yml](../docker-compose.yml) を使うケース:
ローカル環境で開発用サーバー [compose.yml](../compose.yml) を使うケース:

```sql
INSERT INTO "lti_platform" ("issuer", "metadata") VALUES ('http://localhost:8081', '{
Expand Down

0 comments on commit 03af045

Please sign in to comment.