Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

B 20640 #13577

Merged
merged 10 commits into from
Aug 29, 2024
Merged

B 20640 #13577

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ DB_NAME_TEST = test_db
DB_DOCKER_CONTAINER_DEV = milmove-db-dev
DB_DOCKER_CONTAINER_DEPLOYED_MIGRATIONS = milmove-db-deployed-migrations
DB_DOCKER_CONTAINER_TEST = milmove-db-test
DB_DOCKER_CONTAINER_IMAGE = postgres:12.11
DB_DOCKER_CONTAINER_IMAGE = postgres:16.4
REDIS_DOCKER_CONTAINER_IMAGE = redis:5.0.6
REDIS_DOCKER_CONTAINER = milmove-redis
TASKS_DOCKER_CONTAINER = tasks
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.ecs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3'

services:
database:
image: public.ecr.aws/docker/library/postgres:12.7
image: public.ecr.aws/docker/library/postgres:16.4
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=mysecretpassword
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.3'

services:
database:
image: postgres:12.7
image: postgres:16.4
restart: always
ports:
- '6432:5432'
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.mtls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.3'

services:
database:
image: postgres:12.7
image: postgres:16.4
restart: always
environment:
- POSTGRES_USER=postgres
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.mtls_local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.3'

services:
database:
image: postgres:12.7
image: postgres:16.4
restart: always
ports:
- '6432:5432'
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.prime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.3'

services:
database:
image: postgres:12.7
image: postgres:16.4
restart: always
ports:
- '6432:5432'
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.reviewapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.4'

services:
database_review:
image: public.ecr.aws/docker/library/postgres:12.7
image: public.ecr.aws/docker/library/postgres:16.4
restart: always
ports:
- '6432:5432'
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.3'

services:
database:
image: postgres:12.7
image: postgres:16.4
restart: always
ports:
- '6432:5432'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-- Assume the master role, which has the ability to create roles and grant
-- group membership to the rds_iam role.
SET ROLE master;
-- SET ROLE master; --commented out because it's not needed for postgres16

-- Create a new role named "crud" (CREATE READ UPDATE DELETE).
-- Use NOINHERIT so that this low privileged user cannot assume the privileges
Expand Down