Skip to content
This repository was archived by the owner on Mar 17, 2026. It is now read-only.
Open
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 compose.dev.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
postgres:
image: "postgres:17.7"
image: "postgres:18.1"
environment:
POSTGRES_USER: drinks
POSTGRES_PASSWORD: drinks
Expand Down
4 changes: 2 additions & 2 deletions compose.prod.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
services:
postgres:
image: "postgres:17.7"
image: "postgres:18.1"
environment:
POSTGRES_USER: drinks
POSTGRES_PASSWORD: drinks
POSTGRES_DB: drinks
volumes:
- db:/var/lib/postgresql/data
- db:/var/lib/postgresql

drinks:
build: .
Expand Down
Loading