diff options
author | William Carroll <wpcarro@gmail.com> | 2020-01-28T00·00+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-01-28T00·00+0000 |
commit | bacaa0ca8ad26b4f7ff592746d63d5c6b6c39ab0 (patch) | |
tree | 5faad6ce1a7df86b9b86ce5bdd26bcca0a3ede58 /docker/config.lisp | |
parent | af26b6a1818cf9ee8b4fc9764201556f234202cd (diff) |
Add docker/cloud_run.nix
I'm attempting to setup my blog using the following: - Google Cloud Run: I whitelist a docker image that packages my application and then Google runs it "statelessly" (i.e. without persistence). The stateless part should be fine for the time being. - Nix: Using `<nixpkgs>.dockerTools.buildLayeredImage` to output docker images from Nix expressions. - Docker: Upload the output image from the Nix expressions and upload it to Google Container Registry from which it can be run from Google Cloud Run. Some helpful commands: ```shell > sudo gcloud auth login > nix-build ./docker/cloud_run.nix > sudo docker image import ./result > sudo docker tag <name> gcr.io/<google-cloud-project-id>/<name>:<tag> > sudo docker push gcr.io/<google-cloud-project-id>/<name>:<tag> ``` I'm unsure if Google Cloud Run is my desired end goal, but it may help me publish a blog faster than setting up a Kubernetes cluster, which is what I'd ultimately like to do. Cloud Run should be cheaper financially and time-wise.
Diffstat (limited to 'docker/config.lisp')
0 files changed, 0 insertions, 0 deletions