|
Hi there, I was trying to deploy the Tolgee Docker image as a Cloud Run instance on Google Cloud Platform with a Postgres database in Cloud SQL. Here I found that I should set It seems that I would need the dependency com.google.cloud.sql.postgres.SocketFactory installed. Are there any solutions how I can proceed? |
Answered by
Beleren
Mar 11, 2026
Replies: 2 comments 2 replies
|
Hey! You can submit PR adding such dependency to Tolgee's data module. Do you have any idea why google doesn't work with standard Postgre's configuration? |
2 replies
|
What I needed to do to make it work:
What didn't work — Built-in Cloud SQL connector Single container with Cloud SQL annotationThe annotation creates a Unix socket at /cloudsql/my-project:us-central1:my-db-instance/.s.PGSQL.5432, but JDBC can't use Unix sockets. What works — Cloud SQL Proxy sidecar Multi-container: Tolgee + cloud-sql-proxy sidecarSidecar container that provides TCP proxyThe key differences:
|
0 replies
Answer selected by
JanCizmar
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What I needed to do to make it work:
What didn't work — Built-in Cloud SQL connector
Single container with Cloud SQL annotation