Skip to content
Merged
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 .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
matrix:
mix_env: ["test"]
postgres_image: ["postgres:15"]
postgres_image: ["postgres:18"]
mix_test_partition: [1, 2, 3, 4, 5, 6]

include:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ postgres-client: ## Connect to postgres
docker exec -it plausible_db psql -U postgres -d plausible_dev

postgres-prod: ## Start a container with the same version of postgres as the one in prod
docker run $(PG_FLAGS) --volume=plausible_db_prod:/var/lib/postgresql/data postgres:15
docker run $(PG_FLAGS) --volume=plausible_db_prod:/var/lib/postgresql/data postgres:18

postgres-stop: ## Stop and remove the postgres container
docker stop plausible_db && docker rm plausible_db
Expand Down
Loading