tsk-64: Postgresql version bump 18
All checks were successful
Rust Build / Rustfmt (pull_request) Successful in 3m33s
Rust Build / Test Suite (pull_request) Successful in 4m13s
Rust Build / Check (pull_request) Successful in 4m23s
Rust Build / Clippy (pull_request) Successful in 2m1s
Rust Build / build (pull_request) Successful in 3m35s
All checks were successful
Rust Build / Rustfmt (pull_request) Successful in 3m33s
Rust Build / Test Suite (pull_request) Successful in 4m13s
Rust Build / Check (pull_request) Successful in 4m23s
Rust Build / Clippy (pull_request) Successful in 2m1s
Rust Build / build (pull_request) Successful in 3m35s
This commit is contained in:
@@ -36,7 +36,7 @@ jobs:
|
|||||||
# --- Add database service definition ---
|
# --- Add database service definition ---
|
||||||
services:
|
services:
|
||||||
postgres:
|
postgres:
|
||||||
image: postgres:17.5
|
image: postgres:18.0
|
||||||
env:
|
env:
|
||||||
# Use secrets for DB init, with fallbacks for flexibility
|
# Use secrets for DB init, with fallbacks for flexibility
|
||||||
POSTGRES_USER: ${{ secrets.DB_TEST_USER || 'testuser' }}
|
POSTGRES_USER: ${{ secrets.DB_TEST_USER || 'testuser' }}
|
||||||
|
|||||||
@@ -64,7 +64,7 @@ COPY --from=builder /usr/src/app/.env .
|
|||||||
COPY --from=builder /usr/src/app/migrations ./migrations
|
COPY --from=builder /usr/src/app/migrations ./migrations
|
||||||
|
|
||||||
# Expose the port your Axum app listens on (e.g., 3000 or 8000)
|
# Expose the port your Axum app listens on (e.g., 3000 or 8000)
|
||||||
EXPOSE 3000
|
EXPOSE 8001
|
||||||
|
|
||||||
# Set the command to run your application
|
# Set the command to run your application
|
||||||
# Ensure this matches the binary name copied above
|
# Ensure this matches the binary name copied above
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ services:
|
|||||||
|
|
||||||
# PostgreSQL Database Service
|
# PostgreSQL Database Service
|
||||||
auth_db:
|
auth_db:
|
||||||
image: postgres:17.5-alpine # Use an official Postgres image (Alpine variant is smaller)
|
image: postgres:18.0-alpine # Use an official Postgres image (Alpine variant is smaller)
|
||||||
container_name: icarus_auth_db # Optional: Give the container a specific name
|
container_name: icarus_auth_db # Optional: Give the container a specific name
|
||||||
environment:
|
environment:
|
||||||
# These MUST match the user, password, and database name in the DATABASE_URL above
|
# These MUST match the user, password, and database name in the DATABASE_URL above
|
||||||
|
|||||||
Reference in New Issue
Block a user