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

Update circleci/postgres Docker tag to v13.5 #818

Closed
wants to merge 1 commit into from
Closed
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 .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
type: string
docker:
- image: cimg/go:<<parameters.go_version>>
- image: circleci/postgres:13.3-ram
- image: circleci/postgres:13.5-ram
environment:
POSTGRES_USER: user
POSTGRES_PASSWORD: password
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.7"

services:
postgres:
image: circleci/postgres:13.3-ram
image: circleci/postgres:13.5-ram
ports:
- '127.0.0.1:5432:5432'
shm_size: '512mb'
Expand Down