Skip to content

Commit

Permalink
Tools: Use latest minor release of Postgres 13 in sample docker-compo…
Browse files Browse the repository at this point in the history
…se files (laurent22#5797)
  • Loading branch information
aminvakil authored Dec 1, 2021
1 parent a5b1255 commit 3382229
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docker-compose.db-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ version: '3'

services:
db:
image: postgres:13.1
image: postgres:13
command: postgres -c work_mem=100000
ports:
- "5432:5432"
environment:
- POSTGRES_PASSWORD=joplin
- POSTGRES_USER=joplin
- POSTGRES_DB=joplin

# Use this to specify additional Postgres
# config parameters:
#
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.server-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ services:
- POSTGRES_PORT=5432
- POSTGRES_HOST=localhost
db:
image: postgres:13.1
image: postgres:13
ports:
- "5432:5432"
environment:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version: '3'

services:
db:
image: postgres:13.1
image: postgres:13
volumes:
- ./data/postgres:/var/lib/postgresql/data
ports:
Expand Down

0 comments on commit 3382229

Please sign in to comment.