diff options
| author | Copilot <198982749+Copilot@users.noreply.github.com> | 2025-12-14 11:32:42 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-14 11:32:42 +0900 |
| commit | 2d198a711b1785d1f46b4690a484ac448c2a04f0 (patch) | |
| tree | 234d07e0f7b5cbbd3f91eba886eddee212471252 | |
| parent | Update CHANGELOG for version 2025.12.1 (diff) | |
| download | misskey-2d198a711b1785d1f46b4690a484ac448c2a04f0.tar.gz misskey-2d198a711b1785d1f46b4690a484ac448c2a04f0.tar.bz2 misskey-2d198a711b1785d1f46b4690a484ac448c2a04f0.zip | |
Update PostgreSQL volume mount paths for PostgreSQL 18 (#16986)
* Initial plan
* Update PostgreSQL volume mount paths for PostgreSQL 18 compatibility
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
| -rw-r--r-- | compose.local-db.yml | 2 | ||||
| -rw-r--r-- | compose_example.yml | 2 | ||||
| -rw-r--r-- | packages/backend/test-federation/compose.a.yml | 2 | ||||
| -rw-r--r-- | packages/backend/test-federation/compose.b.yml | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/compose.local-db.yml b/compose.local-db.yml index 4703b16fc5..2b69cabf5a 100644 --- a/compose.local-db.yml +++ b/compose.local-db.yml @@ -21,7 +21,7 @@ services: env_file: - .config/docker.env volumes: - - ./db:/var/lib/postgresql/data + - ./db:/var/lib/postgresql healthcheck: test: "pg_isready -U $$POSTGRES_USER -d $$POSTGRES_DB" interval: 5s diff --git a/compose_example.yml b/compose_example.yml index 70de5bba7b..efc7d6624d 100644 --- a/compose_example.yml +++ b/compose_example.yml @@ -43,7 +43,7 @@ services: env_file: - .config/docker.env volumes: - - ./db:/var/lib/postgresql/data + - ./db:/var/lib/postgresql healthcheck: test: "pg_isready -U $$POSTGRES_USER -d $$POSTGRES_DB" interval: 5s diff --git a/packages/backend/test-federation/compose.a.yml b/packages/backend/test-federation/compose.a.yml index 4fd4eb3851..ec9a2cf2af 100644 --- a/packages/backend/test-federation/compose.a.yml +++ b/packages/backend/test-federation/compose.a.yml @@ -50,7 +50,7 @@ services: volumes: - type: bind source: ./volumes/db.a - target: /var/lib/postgresql/data + target: /var/lib/postgresql bind: create_host_path: true diff --git a/packages/backend/test-federation/compose.b.yml b/packages/backend/test-federation/compose.b.yml index 753da22822..9221934406 100644 --- a/packages/backend/test-federation/compose.b.yml +++ b/packages/backend/test-federation/compose.b.yml @@ -50,7 +50,7 @@ services: volumes: - type: bind source: ./volumes/db.b - target: /var/lib/postgresql/data + target: /var/lib/postgresql bind: create_host_path: true |