Skip to content
Closed
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 .template-application-rails/app-rails.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changes here will be overwritten by Copier
_commit: v0.4.1-12-g303a2bf
_commit: v0.4.1-13-g3cc1971
_src_path: https://github.com/navapbc/template-application-rails
app_local_port: 3100
app_name: app-rails
2 changes: 1 addition & 1 deletion app-rails/bin/wait-for-local-postgres.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ if ! command -v pg_isready &>/dev/null; then
echo ""
echo "Please install postgresql:"
echo " MacOS: 'brew install postgresql'"
echo " Linux: 'sudo apt install postgresql-client-14 postgresql-client-common'"
echo " Linux: 'sudo apt install postgresql-client-16 postgresql-client-common'"
echo ""
echo "Sleeping for 5 seconds instead"
sleep 5
Expand Down
2 changes: 1 addition & 1 deletion app-rails/docker-compose.mock-production.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
app-rails-database:
image: postgres:14-alpine
image: postgres:16-alpine
command: postgres -c "log_lock_waits=on" -N 1000 -c "fsync=off"
environment:
POSTGRES_PASSWORD: secret123
Expand Down
2 changes: 1 addition & 1 deletion app-rails/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
app-rails-database:
image: postgres:14-alpine
image: postgres:16-alpine
command: postgres -c "log_lock_waits=on" -N 1000 -c "fsync=off"
environment:
POSTGRES_PASSWORD: secret123
Expand Down
Loading