Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix docker repository #55

Merged
merged 1 commit into from Sep 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/docker.yml
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- uses: actions/checkout@v3.0.2
- name: docker build
run: docker build -t ghcr.io/avelino/moclojer:dev .
run: docker build -t ghcr.io/moclojer/moclojer:dev .
- name: ghcr.io login
if: github.ref_name == 'main'
uses: docker/login-action@v1
Expand All @@ -23,5 +23,5 @@ jobs:
- name: ghcr.io push moclojer:dev
if: github.ref_name == 'main'
run: |
docker build -t ghcr.io/avelino/moclojer:dev .
docker push ghcr.io/avelino/moclojer:dev
docker build -t ghcr.io/moclojer/moclojer:dev .
docker push ghcr.io/moclojer/moclojer:dev
12 changes: 6 additions & 6 deletions README.md
@@ -1,13 +1,13 @@
# moclojer

<a href="https://github.com/avelino/moclojer"><img align="right" src="https://github.com/avelino/moclojer/raw/main/doc/assets/logo.png" alt="moclojer" title="moclojer" /></a>
<a href="https://github.com/moclojer/moclojer"><img align="right" src="https://github.com/moclojer/moclojer/raw/main/doc/assets/logo.png" alt="moclojer" title="moclojer" /></a>

Simple and efficient HTTP mock server with specification in `yaml`, `edn` or `OpenAPI`.

> 💾 Download the binary with the latest version of moclojer to test on your computer [here](https://github.com/avelino/moclojer/releases/latest).
> 💾 Download the binary with the latest version of moclojer to test on your computer [here](https://github.com/moclojer/moclojer/releases/latest).

[![tests](https://github.com/avelino/moclojer/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/avelino/moclojer/actions/workflows/tests.yml)
[![linter](https://github.com/avelino/moclojer/actions/workflows/linter.yml/badge.svg?branch=main)](https://github.com/avelino/moclojer/actions/workflows/linter.yml)
[![tests](https://github.com/moclojer/moclojer/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/moclojer/moclojer/actions/workflows/tests.yml)
[![linter](https://github.com/moclojer/moclojer/actions/workflows/linter.yml/badge.svg?branch=main)](https://github.com/moclojer/moclojer/actions/workflows/linter.yml)

**[📖 See the complete documentation for moclojer here](https://avelino.run/projects/moclojer/)**, if you want to contribute (or complement) the documentation, it is [here](https://github.com/avelino/avelino.run/blob/main/content/projects/moclojer.md).

Expand All @@ -34,12 +34,12 @@ Simple and efficient HTTP mock server with specification in `yaml`, `edn` or `Op

## docker

**image:** `ghcr.io/avelino/moclojer:latest`
**image:** `ghcr.io/moclojer/moclojer:latest`

```sh
docker run -it \
-v $(pwd)/moclojer.yml:/app/moclojer.yml \
ghcr.io/avelino/moclojer:latest
ghcr.io/moclojer/moclojer:latest
```

## 💻 dev environment
Expand Down