Skip to content

Commit

Permalink
Merge pull request #31 from fixpoint/feature/issue30-update-container…
Browse files Browse the repository at this point in the history
…-version

Feature/issue30 update container version
  • Loading branch information
tichi73 authored Jul 26, 2024
2 parents 0153546 + c0e51a9 commit c1fed31
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2024-07-26 Ichiro TAKAHASHI <[email protected]>

* nginx コンテナのバージョンを 1.27-alpine にアップデートしました。(#30)

* postgresql コンテナのバージョンを 16.3-alpine にアップデートしました。PGDATA 領域のボリューム名を変更しました。(#30)

2024-07-25 Ichiro TAKAHASHI <[email protected]>

* nginx -> uwsgi の send/recv タイムアウトを 300 秒に設定しました。(#22)
Expand Down
2 changes: 1 addition & 1 deletion ke2/services/nginx.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
nginx:
image: registry.hub.docker.com/library/nginx:1.25-alpine
image: registry.hub.docker.com/library/nginx:1.27-alpine
hostname: nx-${HOSTNAME}
environment:
- TZ=${TZ:-Asia/Tokyo}
Expand Down
8 changes: 5 additions & 3 deletions ke2/services/postgres.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
services:
postgres:
image: registry.hub.docker.com/library/postgres:15-alpine
# MEMO: potgrsql のメジャーバージョンを変更するときは PGDATA 領域のボリューム名も変更すること
image: registry.hub.docker.com/library/postgres:16.3-alpine
hostname: db-${HOSTNAME}
environment:
POSTGRES_PASSWORD: kompira
POSTGRES_USER: kompira
TZ: ${TZ:-Asia/Tokyo}
volumes:
- ${PGDATA:-kompira_db}:/var/lib/postgresql/data
- ${PGDATA:-kompira_pg16}:/var/lib/postgresql/data
volumes:
kompira_db:
# MEMO: postgresql のメジャーバージョンごとにボリュームを分けておく
kompira_pg16:

0 comments on commit c1fed31

Please sign in to comment.