Skip to content

Commit

Permalink
docs: Update all nixery.appspot.com references to nixery.dev
Browse files Browse the repository at this point in the history
Shiny, new domain is much better and eliminates the TLS redirect issue
because there is a HSTS preload for the entire .dev TLD (which, by the
way, is awesome!)
  • Loading branch information
tazjin authored and Vincent Ambo committed Aug 2, 2019
1 parent d5ab2e1 commit cf455fc
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,24 +20,24 @@ The project started out with the intention of becoming a Kubernetes controller
that can serve declarative image specifications specified in CRDs as container
images. The design for this is outlined in [a public gist][gist].

An example instance is available at [nixery.appspot.com][demo].
An example instance is available at [nixery.dev][demo].

This is not an officially supported Google project.

## Usage example

Using the publicly available Nixery instance at `nixery.appspot.com`, one could
Using the publicly available Nixery instance at `nixery.dev`, one could
retrieve a container image containing `curl` and an interactive shell like this:

```shell
tazjin@tazbox:~$ sudo docker run -ti nixery.appspot.com/shell/curl bash
Unable to find image 'nixery.appspot.com/shell/curl:latest' locally
tazjin@tazbox:~$ sudo docker run -ti nixery.dev/shell/curl bash
Unable to find image 'nixery.dev/shell/curl:latest' locally
latest: Pulling from shell/curl
7734b79e1ba1: Already exists
b0d2008d18cd: Pull complete
< ... some layers omitted ...>
Digest: sha256:178270bfe84f74548b6a43347d73524e5c2636875b673675db1547ec427cf302
Status: Downloaded newer image for nixery.appspot.com/shell/curl:latest
Status: Downloaded newer image for nixery.dev/shell/curl:latest
bash-4.4# curl --version
curl 7.64.0 (x86_64-pc-linux-gnu) libcurl/7.64.0 OpenSSL/1.0.2q zlib/1.2.11 libssh2/1.8.0 nghttp2/1.35.1
```
Expand Down Expand Up @@ -100,5 +100,5 @@ See [issue #4](https://github.com/google/nixery/issues/4).
[Nix]: https://nixos.org/
[gist]: https://gist.github.com/tazjin/08f3d37073b3590aacac424303e6f745
[buildLayeredImage]: https://grahamc.com/blog/nix-and-layered-docker-images
[demo]: https://nixery.appspot.com
[demo]: https://nixery.dev
[gcs]: https://cloud.google.com/storage/
4 changes: 2 additions & 2 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ rec {
'';

# Static files to serve on the Nixery index. This is used primarily
# for the demo instance running at nixery.appspot.com and provides
# some background information for what Nixery is.
# for the demo instance running at nixery.dev and provides some
# background information for what Nixery is.
nixery-static = runCommand "nixery-static" {} ''
mkdir $out
cp ${./static}/* $out
Expand Down
2 changes: 1 addition & 1 deletion static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ <h3>How does it work?</h3>
shell and <code>emacs</code> you could pull it as such:
</p>
<p>
<code>nixery.appspot.com/shell/emacs25-nox</code>
<code>nixery.dev/shell/emacs25-nox</code>
</p>
<p>
Image tags are currently ignored. Every package name needs to
Expand Down

0 comments on commit cf455fc

Please sign in to comment.