DEV Community

Discussion on: CI/CD pipeline setup: Building and pushing Docker images to Docker Hub using GitHub Actions

Collapse
 
maurerkrisztian profile image
Krisztián Maurer

Nice article! I recenlty discovered that GitHub has its own Container registry, which means there's no need to create a Docker Hub account and you can manage them from one place. This makes things easier if your code is already on GitHub.
Also actions/checkout and docker/login-action has newer versions: actions/checkout@v3, docker/login-action@v2

Collapse
 
hossainchisty profile image
Hossain Chisty

Thanks you Maurer! Yeah I also discovered that really excited to test it.