Skip to content

Commit 1b29518

Browse files
authored
Merge pull request #249 from python-openapi/feature/move-docker-org
move docker org
2 parents a2f6ffc + bdec6ab commit 1b29518

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/docker-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717

1818
- name: Docker meta
1919
id: meta
20-
uses: uses: docker/metadata-action@v4
20+
uses: docker/metadata-action@v4
2121
with:
2222
images: |
23-
p1c2u/openapi-spec-validator
23+
pythonopenapi/openapi-spec-validator
2424
tags: |
2525
type=semver,pattern={{version}}
2626

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ PROJECT_NAME=openapi-spec-validator
44
PACKAGE_NAME=$(subst -,_,${PROJECT_NAME})
55
VERSION=`git describe --abbrev=0`
66

7-
DOCKER_REGISTRY=p1c2u
7+
DOCKER_REGISTRY=pythonopenapi
88

99
PYTHONDONTWRITEBYTECODE=1
1010

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
OpenAPI Spec validator
33
**********************
44

5-
.. image:: https://img.shields.io/docker/v/p1c2u/openapi-spec-validator.svg?color=%23086DD7&label=docker%20hub&sort=semver
6-
:target: https://hub.docker.com/r/p1c2u/openapi-spec-validator
5+
.. image:: https://img.shields.io/docker/v/pythonopenapi/openapi-spec-validator.svg?color=%23086DD7&label=docker%20hub&sort=semver
6+
:target: https://hub.docker.com/r/pythonopenapi/openapi-spec-validator
77
.. image:: https://img.shields.io/pypi/v/openapi-spec-validator.svg
88
:target: https://pypi.python.org/pypi/openapi-spec-validator
99
.. image:: https://travis-ci.org/python-openapi/openapi-spec-validator.svg?branch=master
@@ -70,7 +70,7 @@ docker way:
7070

7171
.. code-block:: bash
7272
73-
docker run -v path/to/openapi.yaml:/openapi.yaml --rm p1c2u/openapi-spec-validator /openapi.yaml
73+
docker run -v path/to/openapi.yaml:/openapi.yaml --rm pythonopenapi/openapi-spec-validator /openapi.yaml
7474
7575
or more pythonic way:
7676

docs/cli.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ CLI (Command Line Interface)
2121

2222
.. code-block:: bash
2323
24-
docker run -v path/to/openapi.yaml:/openapi.yaml --rm p1c2u/openapi-spec-validator /openapi.yaml
24+
docker run -v path/to/openapi.yaml:/openapi.yaml --rm pythonopenapi/openapi-spec-validator /openapi.yaml
2525
2626
.. md-tab-item:: Python interpreter
2727

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Usage
6161

6262
.. code-block:: bash
6363
64-
docker run -v path/to/openapi.yaml:/openapi.yaml --rm p1c2u/openapi-spec-validator /openapi.yaml
64+
docker run -v path/to/openapi.yaml:/openapi.yaml --rm pythonopenapi/openapi-spec-validator /openapi.yaml
6565
6666
.. md-tab-item:: Python interpreter
6767

0 commit comments

Comments
 (0)