Skip to content

Commit

Permalink
ci: pin postgres version to 15
Browse files Browse the repository at this point in the history
  • Loading branch information
AmruthPillai committed Nov 23, 2023
1 parent 563abc0 commit bdcae32
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion tools/compose/development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version: "3.8"
services:
# Database (Postgres)
postgres:
image: postgres:alpine
image: postgres:15-alpine
restart: unless-stopped
ports:
- ${POSTGRES_PORT:-5432}:5432
Expand Down
2 changes: 1 addition & 1 deletion tools/compose/nginx-proxy-manager.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ version: "3.8"
services:
# Database (Postgres)
postgres:
image: postgres:alpine
image: postgres:15-alpine
restart: unless-stopped
volumes:
- postgres_data:/var/lib/postgresql/data
Expand Down
2 changes: 1 addition & 1 deletion tools/compose/simple.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version: "3.8"
services:
# Database (Postgres)
postgres:
image: postgres:alpine
image: postgres:15-alpine
restart: unless-stopped
volumes:
- postgres_data:/var/lib/postgresql/data
Expand Down
2 changes: 1 addition & 1 deletion tools/compose/swarm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version: "3.8"
services:
# Database (Postgres)
postgres:
image: postgres:alpine
image: postgres:15-alpine
networks:
- reactive_resume_network
volumes:
Expand Down
2 changes: 1 addition & 1 deletion tools/compose/traefik-secure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version: "3.8"
services:
# Database (Postgres)
postgres:
image: postgres:alpine
image: postgres:15-alpine
restart: unless-stopped
volumes:
- postgres_data:/var/lib/postgresql/data
Expand Down
2 changes: 1 addition & 1 deletion tools/compose/traefik.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version: "3.8"
services:
# Database (Postgres)
postgres:
image: postgres:alpine
image: postgres:15-alpine
restart: unless-stopped
volumes:
- postgres_data:/var/lib/postgresql/data
Expand Down

0 comments on commit bdcae32

Please sign in to comment.