Hey there, I need help translating this docker compose file to render.yaml. Would be pretty good to have a way to convert it using the dashboard.
version: '3.8'
services:
proxy:
image: gcr.io/cloudsql-docker/gce-proxy:1.33.1
volumes:
- ./credentials.json:/secrets/cloudsql/credentials.json
ports:
- '54320:54320'
command: >
/cloud_sql_proxy
-instances=${CLOUD_SQL_INSTANCE_NAME}=tcp:0.0.0.0:54320
-credential_file=/secrets/cloudsql/credentials.json
We already have this in our render.yaml file for this service:
services:
- type: web
name: traba-server-node-dev
env: docker
branch: main
dockerfilePath: ./Dockerfile
dockerContext: ./
We need this second image to run and load in the same instance.
Thank you for the support!