Skip to content
This repository has been archived by the owner on Dec 12, 2022. It is now read-only.

chore: update docker-compose example #55

Merged
merged 1 commit into from
Nov 25, 2021
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
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ services:
db:
expose:
- "5432"
image: postgres:10-alpine
image: postgres:13
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To keep using alpine, we should probably use 13-alpine

Suggested change
image: postgres:13
image: postgres:13-alpine

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I changed from alpine because it was suggested in #54. Docker compose is not an official way to run Unleash, more for testing purposes.

Both works on my machine though!

environment:
POSTGRES_DB: "db"
POSTGRES_HOST_AUTH_METHOD: "trust"
Expand Down