# Google Cloud Platform

### Containers

This walkthrough demonstrates how to upload a Docker container to Google Container Registry.&#x20;

Some helpful guides:

* [Google Container Registry Documentation](https://cloud.google.com/container-registry/docs/)

**Ensure the Docker image on your local device is up to date**

```
docker build -t <YOUR-IMAGE> .
gcloud auth configure-docker ## use GCP credentials
[HOSTNAME]/[PROJECT-ID]/[IMAGE] ## hostname = us.gcr.io
docker tag [SOURCE_IMAGE] [HOSTNAME]/[PROJECT-ID]/[IMAGE]
docker push [HOSTNAME]/[PROJECT-ID]/[IMAGE]
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://wiki.philmohun.com/draft/technology/cloud/google-cloud-platform.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
