Update DockerHub Repo name

I'm renaming my accounts to `thehale`. This commit points this repo to the new
DockerHub location.
pull/1/head
Joseph Hale 2 years ago
parent 2486ca8bc7
commit bfecbb5d98

@ -22,7 +22,7 @@ jobs:
- name: Login to DockerHub - name: Login to DockerHub
run: echo -n $DOCKER_ACCESS_TOKEN | docker login $DOCKER_REGISTRY -u $DOCKER_USERNAME --password-stdin run: echo -n $DOCKER_ACCESS_TOKEN | docker login $DOCKER_REGISTRY -u $DOCKER_USERNAME --password-stdin
- name: Push Image to DockerHub - name: Push Image to DockerHub
run: docker push jhale1805/python-poetry:latest run: docker push thehale/python-poetry:latest
build-versions: build-versions:
@ -44,4 +44,4 @@ jobs:
- name: Login to DockerHub - name: Login to DockerHub
run: echo -n $DOCKER_ACCESS_TOKEN | docker login $DOCKER_REGISTRY -u $DOCKER_USERNAME --password-stdin run: echo -n $DOCKER_ACCESS_TOKEN | docker login $DOCKER_REGISTRY -u $DOCKER_USERNAME --password-stdin
- name: Push Image to DockerHub - name: Push Image to DockerHub
run: docker push jhale1805/python-poetry:${{ matrix.poetry_version }}-py${{ matrix.python_image_tag }} run: docker push thehale/python-poetry:${{ matrix.poetry_version }}-py${{ matrix.python_image_tag }}

@ -5,16 +5,16 @@
build: build:
docker build \ docker build \
--tag jhale1805/python-poetry:latest \ --tag thehale/python-poetry:latest \
--build-arg BUILDKIT_INLINE_CACHE=1 \ --build-arg BUILDKIT_INLINE_CACHE=1 \
--cache-from jhale1805/python-poetry:latest \ --cache-from thehale/python-poetry:latest \
. .
build-version: build-version:
docker build \ docker build \
--tag jhale1805/python-poetry:$(POETRY_VERSION)-py$(PYTHON_IMAGE_TAG) \ --tag thehale/python-poetry:$(POETRY_VERSION)-py$(PYTHON_IMAGE_TAG) \
--build-arg POETRY_VERSION=$(POETRY_VERSION) \ --build-arg POETRY_VERSION=$(POETRY_VERSION) \
--build-arg PYTHON_IMAGE_TAG=$(PYTHON_IMAGE_TAG) \ --build-arg PYTHON_IMAGE_TAG=$(PYTHON_IMAGE_TAG) \
--build-arg BUILDKIT_INLINE_CACHE=1 \ --build-arg BUILDKIT_INLINE_CACHE=1 \
--cache-from jhale1805/python-poetry:$(POETRY_VERSION)-py$(PYTHON_IMAGE_TAG) \ --cache-from thehale/python-poetry:$(POETRY_VERSION)-py$(PYTHON_IMAGE_TAG) \
. .

@ -16,26 +16,26 @@ Python Poetry. Hopefully you find it useful anyway!*
Most of the time, you will be using these images as a base image for your own Most of the time, you will be using these images as a base image for your own
Dockerfiles (e.g. devcontainers, building Python applications, etc.) Dockerfiles (e.g. devcontainers, building Python applications, etc.)
```Dockerfile ```Dockerfile
FROM jhale1805/python-poetry FROM thehale/python-poetry
# Your build steps here. # Your build steps here.
``` ```
However, you can also download and run the latest `python-poetry` Docker image However, you can also download and run the latest `python-poetry` Docker image
by pulling it from DockerHub. by pulling it from DockerHub.
``` ```
docker pull jhale1805/python-poetry docker pull thehale/python-poetry
docker run --rm jhale1805/python-poetry poetry --version docker run --rm thehale/python-poetry poetry --version
``` ```
There are tagged images for all the latest stable versions of `python-poetry` There are tagged images for all the latest stable versions of `python-poetry`
for all versions of Python that Poetry supports (>3.7). You can see the [full for all versions of Python that Poetry supports (>3.7). You can see the [full
tag list on DockerHub](https://hub.docker.com/r/jhale1805/python-poetry/tags). tag list on DockerHub](https://hub.docker.com/r/thehale/python-poetry/tags).
## Build Your Own Image ## Build Your Own Image
This repo automatically builds images for the latest stable versions of This repo automatically builds images for the latest stable versions of
`python-poetry` for all supported versions of Python (>3.7). `python-poetry` for all supported versions of Python (>3.7).
- You can see the full build matrix in - You can see the full build matrix in
[.github/workflows/docker-image.yml](.github/workflows/docker-image.yml) [.github/workflows/docker-image.yml](https://github.com/thehale/docker-python-poetry/blob/master/.github/workflows/docker-image.yml)
However, if you need a combination that isn't automatically built, you can However, if you need a combination that isn't automatically built, you can
easily create your own by modifying the command below to contain your preferred easily create your own by modifying the command below to contain your preferred

Loading…
Cancel
Save