diff --git a/CHANGELOG.md b/CHANGELOG.md index 7913147..21ba822 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [unreleased] - 2021-10-20 +### Added +- Images deploying to docker hub too. We're now at capacity for our Docker Hub team. + ## [v4.4.4] - 2021-10-20 ### Changed - Trying to get CI push of built images. I expect this to fail, too. But in a way that can help me debug the issue. diff --git a/README.md b/README.md index c6709cb..b78bab7 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ You can read more about why we made these decisions in [philosophy](docs/philoso Run in demonstration mode =========== - docker run --rm -it -p 8080:8080 dirtbags/moth-devel + docker run --rm -it -p 8080:8080 ghcr.io/dirtbags/moth-devel Then open http://localhost:8080/ and check out the example puzzles. diff --git a/docs/development.md b/docs/development.md index 1a14b32..ccc789a 100644 --- a/docs/development.md +++ b/docs/development.md @@ -25,12 +25,12 @@ so you can watch the access log and any error messages. ### Podman - podman run --rm -it -p 8080:8080 -v /srv/moth/puzzles:/puzzles:ro dirtbags/moth-devel + podman run --rm -it -p 8080:8080 -v /srv/moth/puzzles:/puzzles:ro ghcr.io/dirtbags/moth-devel ### Docker - docker run --rm -it -p 8080:8080 -v /srv/moth/puzzles:/puzzles:ro dirtbags/moth-devel + docker run --rm -it -p 8080:8080 -v /srv/moth/puzzles:/puzzles:ro ghcr.io/dirtbags/moth-devel ### Native diff --git a/docs/getting-started.md b/docs/getting-started.md index a1a9258..9cc6185 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -33,11 +33,11 @@ We're going to assume you put everything in `/srv/moth`, like we suggested. ### Podman - podman run --name=moth -d -v /srv/moth/mothballs:/mothballs:ro -v /srv/moth/state:/state dirtbags/moth + podman run --name=moth -d -v /srv/moth/mothballs:/mothballs:ro -v /srv/moth/state:/state ghcr.io/dirtbags/moth ### Docker - docker run --name=moth -d -v /srv/moth/mothballs:/mothballs:ro -v /srv/moth/state:/state dirtbags/moth + docker run --name=moth -d -v /srv/moth/mothballs:/mothballs:ro -v /srv/moth/state:/state ghcr.io/dirtbags/moth ### Native