| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
Securing Cloud Run services tutorial walks through how to create a secure two-service application running on Cloud Run. This application is a Markdown editor which includes a public "frontend" service which anyone can use to compose markdown text, and a private "backend" service which renders Markdown text to HTML.
For more details on how to work with this sample read the Google Cloud Run Java Samples README.
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>jib-maven-plugin</artifactId>
<version>2.1.0</version>
<configuration>
<to>
<image>gcr.io/PROJECT_ID/renderer</image>
</to>
</configuration>
</plugin>
mvn compile jib:build
Cloud Run services can be configured with Environment Variables. Required variables for this sample include:
| Back | FazBrowse Home | New Git URL |