When developing locally, can docker-compose be used with Cloud Code to start other containers (like Postgres and Nginx) locally? Is there a way to do this when clicking 'Run/Debug on Cloud Run Emulator'?
Can Cloud Code use docker-compose to start containers locally?
248 Views Asked by Abby Carey At
2
There are 2 best solutions below
0

Cloud Code simply extends your local IDE by adding several features in it that would make it easier to develop, deploy, and debug Cloud Run services or Kubernetes apps. You should still be able to run your usual commands on a separate terminal on your machine.
To see the available features Cloud Code currently have, feel free to check out the official documentation link.
You could look at kompose:
That "may not be exact" is unfortunately key: there isn't a 1-1 mapping between every feature in docker-compose and Kubernetes. But kompose will get you most of the way.
Skaffold, the build and deployment tool used under the hood by Cloud Code, can use
kompose
to convert a docker-compose project:You need to have
kompose
on your system.