From 4ee2bb1bce1e39f05452077339080c3e381348a2 Mon Sep 17 00:00:00 2001 From: phoenix Date: Fri, 29 May 2026 16:53:35 -0400 Subject: [PATCH] Updated docker files --- Dockerfile | 3 ++- docker-compose.yaml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 639487f..ce72ee9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,8 @@ RUN mkdir -p -m 0700 ~/.ssh && \ ssh-keyscan git.kundeng.us >> ~/.ssh/known_hosts # Configure Git to use SSH for GitHub -RUN git config --global url."ssh://git@git.kundeng.us".insteadOf "https://git.kundeng.us" +RUN git config --global url."git@git.kundeng.us:".insteadOf "https://git.kundeng.us/" && \ + git config --global url."git@git.kundeng.us:".insteadOf "http://git.kundeng.us/" # Set up the Go environment for private modules ENV GOPRIVATE=git.kundeng.us diff --git a/docker-compose.yaml b/docker-compose.yaml index 946824e..2c8144c 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -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