diff options
author | William Carroll <wpcarro@gmail.com> | 2020-01-28T16·48+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-01-28T16·48+0000 |
commit | 8ad51b24dd8719840aac47134835ea25cfe1b0b8 (patch) | |
tree | 560da0eeb90ec4334c4b621b0938458a3d26ce44 /docker | |
parent | ff06ffcf9cd8ad78f0dcc7df4e6bbfa684e73f1e (diff) |
Document current deployment tactics
Adding a README including my current method for deploying. See the README for more details. All of this is quite virgin and as such is subject to change.
Diffstat (limited to 'docker')
-rw-r--r-- | docker/README.md | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/docker/README.md b/docker/README.md new file mode 100644 index 000000000000..34f762cc1970 --- /dev/null +++ b/docker/README.md @@ -0,0 +1,59 @@ +# Deployments + +I'm documenting how I currently deploy things. + +I'd like to automate this workflow as much as possible, and I intend to do just +that. For now, I'm running things manually until I can design an generalization +that appeals to me. + +## Dependencies +- `nix-build` +- `docker` +- `gcloud` + +## Step-by-step + +1. Use `nix-build` to create our Docker image for Cloud Run. + +```shell +> nix-build ./cloud_run.nix +``` + +This outputs a Docker image at `./result`. + +1. Load the built image (i.e. `./result`) into `docker` so that we can tag it + and push it to the Google Container Registry (i.e. GCR). + +```shell +> sudo docker load <./result +``` + +1. (Optionally) Run the image locally to verify its integrity. + +```shell +> sudo docker run -d <name>:<tag> +``` + +1. Tag and push the image to GCR. + +```shell +> sudo docker tag <name>:<label> gcr.io/<google-cloud-project-id>/<name>:<latest> +``` + +# TODO: Prefer using a command line tool like `gcloud` for these steps. + +1. Visit Google Cloud Run; create a new service with "Create Service"; select + the uploaded Docker image from the "Container Image URL" field; click + "Create" to deploy. + + +## Notes + +You may need to authorize `gcloud` by running the following: + +```shell +> sudo gcloud auth login --no-launch-browser +``` + +You must use `sudo` here since the `docker` invocations are prefixed with `sudo` +as well. |