Skip to content

Commit

Permalink
Use Postgres 14 container image
Browse files Browse the repository at this point in the history
  • Loading branch information
ku1ik committed Feb 10, 2023
1 parent ff7acf5 commit 8b8859f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion dev/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,11 @@ volumes:

services:
postgres:
image: postgres
image: postgres:14-alpine
container_name: asciinema_dev_postgres
environment:
- POSTGRES_PASSWORD=password
- POSTGRES_HOST_AUTH_METHOD=trust
ports:
- 2345: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: '2'

services:
postgres:
image: postgres:12-alpine
image: postgres:14-alpine
container_name: asciinema_postgres
restart: unless-stopped
volumes:
Expand Down

0 comments on commit 8b8859f

Please sign in to comment.