Skip to content

Commit a925aec

Browse files
authoredFeb 26, 2025··
Merge pull request #1119 from mewstcom/postgres-16
PostgreSQL 16を使用する
2 parents a5fb3ce + d2ce779 commit a925aec

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed
 

‎.github/workflows/lint-and-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
RAILS_ENV: test
9696
services:
9797
postgresql:
98-
image: postgres:14.6
98+
image: postgres:16.2
9999
ports:
100100
- 5432:5432
101101
env:

‎Dockerfile.dev

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN \
1818
apt update && \
1919
apt install -y --no-install-recommends \
2020
libpq-dev \
21-
postgresql-client-15
21+
postgresql-client-16
2222

2323
# Node.jsのセットアップ
2424
RUN \

‎docker-compose.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ services:
1616
- app_gems_data:/usr/local/bundle
1717

1818
postgresql:
19-
image: postgres:15.1
19+
image: postgres:16.2
2020
ports:
2121
- "5432:5432"
2222
volumes:
23-
- postgresql_data:/var/lib/postgresql/data:delegated
23+
- postgresql16_data:/var/lib/postgresql/data:delegated
2424
environment:
2525
POSTGRES_HOST_AUTH_METHOD: trust
2626

@@ -36,4 +36,4 @@ services:
3636

3737
volumes:
3838
app_gems_data:
39-
postgresql_data:
39+
postgresql16_data:

0 commit comments

Comments
 (0)
Please sign in to comment.