ruby-docker
ruby-docker copied to clipboard
Ruby runtime for Google Cloud Platform
Now that [libvips](https://www.libvips.org/) is [the default image processor for Rails](https://edgeguides.rubyonrails.org/upgrading_ruby_on_rails.html#active-storage-default-variant-processor-changed-to-vips) is there a way to have that on the base image like Imagemagick? As it stands now, a stock Rails...
using this statement in cloudbuild.yaml i got $POSTGRES_PASSWORD as value of env variable POSTGRES_PASSWORD ``` - name: gcr.io/google-appengine/exec-wrapper args: - '-i' - '$_GCR_HOSTNAME/$PROJECT_ID/$REPO_NAME/$_SERVICE_NAME:$COMMIT_SHA' - '-s' - '${PROJECT_ID}:${_DEPLOY_REGION}:${_DB_INSTANCE}' - '-e' -...
Trying to run a Cloud Build file like the next: ``` steps: - name: 'gcr.io/google-appengine/exec-wrapper' id: TEST args: [ '-i', 'gcr.io/$PROJECT_ID/${_BUILD_TARGET}', '-s', '${_CLOUD_SQL_DEV}', '-e', 'DJANGO_SETTINGS_MODULE=$$DJANGO_SETTINGS_MODULE', '-e', 'CLOUD_SQL=/cloudsql/${_CLOUD_SQL_DEV}', '--', 'python', 'manage.py',...
Is there any option to attach a VPC connector to the docker image? It would be required if we want to connect to service like Memory store or Cloud SQL...
Trying to run a Cloud Build file like the next: ``` steps: - name: 'gcr.io/google-appengine/exec-wrapper' id: TEST args: [ '-i', 'gcr.io/$PROJECT_ID/${_BUILD_TARGET}', '-s', '${_CLOUD_SQL_DEV}', '-e', 'DJANGO_SETTINGS_MODULE=${_DJANGO_SETTINGS}', '-e', 'CLOUD_SQL=/cloudsql/${_CLOUD_SQL_DEV}', '--', 'bash', '-c',...
The [ruby-generate-dockerfile container](https://github.com/GoogleCloudPlatform/ruby-docker/tree/master/ruby-generate-dockerfile) is used by Google App Engine to deploy Ruby/Rails applications. The last thing it does after generating the Dockerfile for the Ruby/Rails application is [output the entire...
Hi, I want to pass secret credential file in wrapper any way to do so
I noticed that every time I run `gcloud app deploy`, `bundle install` will be execute, and it will refeching gems and install them again, even the ruby version and `Gemfile.lock`...
Spent some time figuring out this gotcha: If the `rake assets:precompile` step require database access (which is very typical for large Rails apps), the Cloud SQL Proxy can fail to...