Skip to content
Merged
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
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
# If you bump the database version here, be sure to update the database accordingly on Coolify as well.

services:
postgres:
image: postgres:17.9
postgres-18:
image: postgres:18.3
ports:
- ${POSTGRES_PORT-:5432}:5432
environment:
POSTGRES_USER: hackathons
POSTGRES_DB: hackathons_test
POSTGRES_HOST_AUTH_METHOD: trust
volumes:
- postgres-data:/var/lib/postgresql/data
- postgres-18:/var/lib/postgresql

volumes:
postgres-data: {}
postgres-18: {}
Loading