Skip to content

Commit 7632105

Browse files
committed
chore: update postgres image to 18.1-alpine
1 parent 2b00355 commit 7632105

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ help: ## Display this help screen
2020
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m<target>\033[0m\n"} /^[a-zA-Z_-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)
2121

2222
compose-up: ### Run docker compose (without backend and reverse proxy)
23-
$(BASE_STACK) up --build -d db rabbitmq && docker compose logs -f
23+
$(BASE_STACK) up --build -d db rabbitmq nats && docker compose logs -f
2424
.PHONY: compose-up
2525

2626
compose-up-all: ### Run docker compose (with backend and reverse proxy)

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ x-backend-app-environment: &x-backend-app-environment
4444
services:
4545
db:
4646
container_name: db
47-
image: postgres:17-alpine
47+
image: postgres:18.1-alpine
4848
environment:
4949
<<: *x-db-environment
5050
volumes:

0 commit comments

Comments
 (0)