Updated docker (#1)
Go / build (push) Successful in 7s
Go / Test (push) Successful in 18s

Reviewed-on: phoenix/textsender-auth#1
This commit was merged in pull request #1.
This commit is contained in:
2026-05-29 17:31:18 -04:00
parent 2da394c7a4
commit 609cc22b51
3 changed files with 9 additions and 4 deletions
+2 -2
View File
@@ -18,7 +18,7 @@ services:
# PostgreSQL Database Service
auth_db:
image: postgres:18.3-alpine # Use an official Postgres image (Alpine variant is smaller)
image: postgres:18.4-alpine # Use an official Postgres image (Alpine variant is smaller)
container_name: textsender_auth_db # Optional: Give the container a specific name
environment:
# These MUST match the user, password, and database name in the DATABASE_URL above
@@ -27,7 +27,7 @@ services:
POSTGRES_DB: ${POSTGRES_AUTH_DB:-textsender_auth_db}
volumes:
# Persist database data using a named volume
- postgres_data:/var/lib/postgresql/data
- postgres_data:/var/lib/postgresql
ports: []
healthcheck:
# Checks if Postgres is ready to accept connections