-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from fixpoint/feature/issue30-update-container…
…-version Feature/issue30 update container version
- Loading branch information
Showing
3 changed files
with
12 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: |