Skip to content

Releases: FireWork-Production-Private-Ltd/docker-repos

v3.0.2

04 Feb 09:48
477664b
Compare
Choose a tag to compare

Docker-Repos

  • this will have config and express package under its docker image.

workflow

name: Build and Push Docker Image to Docker Hub

on: push
jobs:
  push_to_registry:
    name: push docker image to hub
    runs-on: ubuntu-latest
    steps:
      - name: check repository
        uses: actions/checkout@v4

      - name: login to docker registry
        uses: docker/login-action@v3
        with:
          username: ${{secrets.DOCKERHUB_USERNAME}}
          password: ${{secrets.DOCKERHUB_TOKEN}}

      - name: build and push docker image to registry
        uses: docker/build-push-action@v5
        with:
          context: DockerFileFolder/
          push: true
          tags: black1512/demo1:latest
  • you need to specify your DOCKERHUB_USERNAME and DOCKERHUB_TOKEN inside your repos secrets.

Docker Registry

  • This will update https://hub.docker.com/r/black1512/demo1 docker registry.
# pull this image by
docker pull black1512/demo1:latest
  • need to configure DOCKERHUB_USERNAME and DOCKERHUB_TOKEN secrets for your repo.

v3.0.1

02 Feb 19:57
Compare
Choose a tag to compare

Docker-Repos

  • this will have config and express package under its docker image.

workflow

name: Build and Push Docker Image to Docker Hub

on: push
jobs:
  push_to_registry:
    name: push docker image to hub
    runs-on: ubuntu-latest
    steps:
      - name: check repository
        uses: actions/checkout@v4

      - name: login to docker registry
        uses: docker/login-action@v3
        with:
          username: ${{secrets.DOCKERHUB_USERNAME}}
          password: ${{secrets.DOCKERHUB_TOKEN}}

      - name: build and push docker image to registry
        uses: docker/build-push-action@v5
        with:
          context: DockerFileFolder/
          push: true
          tags: black1512/demo1:latest
  • you need to specify your DOCKERHUB_USERNAME and DOCKERHUB_TOKEN inside your repos secrets.

Docker Registry

  • This will update https://hub.docker.com/r/black1512/demo1 docker registry.
  • This will update on https://github.com/black1512/docker-repos/pkgs/container/docker-repos also.
# pull this image by
docker pull black1512/demo1:latest

docker pull ghcr.io/black1512/docker-repos:latest

Full Changelog: v3.0.0...v3.0.1

v3.0.0

02 Feb 19:53
Compare
Choose a tag to compare

Docker-Repos

  • this will have config and express package under its docker image.

workflow

name: Build and Push Docker Image to Docker Hub

on: push
jobs:
  push_to_registry:
    name: push docker image to hub
    runs-on: ubuntu-latest
    steps:
      - name: check repository
        uses: actions/checkout@v4

      - name: login to docker registry
        uses: docker/login-action@v3
        with:
          username: ${{secrets.DOCKERHUB_USERNAME}}
          password: ${{secrets.DOCKERHUB_TOKEN}}

      - name: build and push docker image to registry
        uses: docker/build-push-action@v5
        with:
          context: DockerFileFolder/
          push: true
          tags: black1512/demo1:latest
  • you need to specify your DOCKERHUB_USERNAME and DOCKERHUB_TOKEN inside your repos secrets.

Docker Registry

  • This will update https://hub.docker.com/r/black1512/demo1 docker registry.
  • This will update on https://github.com/black1512/docker-repos/pkgs/container/docker-repos also.
# pull this image by
docker pull black1512/demo1:latest

docker pull ghcr.io/black1512/docker-repos:latest

Full Changelog: v2.0.0...v3.0.0

v2.0.0

02 Feb 18:47
d1834a9
Compare
Choose a tag to compare

Docker-Repos

  • this will have config and express package under its docker image.

workflow

name: Build and Push Docker Image to Docker Hub

on: push
jobs:
  push_to_registry:
    name: push docker image to hub
    runs-on: ubuntu-latest
    steps:
      - name: check repository
        uses: actions/checkout@v4

      - name: login to docker registry
        uses: docker/login-action@v3
        with:
          username: ${{secrets.DOCKERHUB_USERNAME}}
          password: ${{secrets.DOCKERHUB_TOKEN}}

      - name: build and push docker image to registry
        uses: docker/build-push-action@v5
        with:
          context: DockerFileFolder/
          push: true
          tags: black1512/demo1:latest
  • you need to specify your DOCKERHUB_USERNAME and DOCKERHUB_TOKEN inside your repos secrets.

Docker Registry

  • This will update https://hub.docker.com/r/black1512/demo1 docker registry.
# pull this image by
docker pull black1512/demo1:latest

What's Changed

New Contributors

Full Changelog: v1.0.2...v2.0.0

v1.0.2

02 Feb 18:39
Compare
Choose a tag to compare

v1.0.1

02 Feb 18:32
Compare
Choose a tag to compare