mirror of https://github.com/dirtbags/moth.git
Push images to docker hub, but say to use ghcr
This commit is contained in:
parent
127beca1fc
commit
a2ce3682ab
|
@ -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/),
|
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).
|
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
|
## [v4.4.4] - 2021-10-20
|
||||||
### Changed
|
### 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.
|
- 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.
|
||||||
|
|
|
@ -33,7 +33,7 @@ You can read more about why we made these decisions in [philosophy](docs/philoso
|
||||||
Run in demonstration mode
|
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.
|
Then open http://localhost:8080/ and check out the example puzzles.
|
||||||
|
|
||||||
|
|
|
@ -25,12 +25,12 @@ so you can watch the access log and any error messages.
|
||||||
|
|
||||||
### Podman
|
### 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
|
||||||
|
|
||||||
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
|
### Native
|
||||||
|
|
||||||
|
|
|
@ -33,11 +33,11 @@ We're going to assume you put everything in `/srv/moth`, like we suggested.
|
||||||
|
|
||||||
### Podman
|
### 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
|
||||||
|
|
||||||
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
|
### Native
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue