Latest Posts
Creating and securing an AWS account is crucial and the first step that you’ll need if you want to learn or use AWS services for your projects. If you are looking into doing just that and get started, this is post is for you.
Prerequisites
Unique email a...
AWSPublished on May 22, 2023
So you’ve got your dockerized project ready to push to Docker Hub? Let’s automate this process using GitLab CI.
First, sign up or sign in at https://hub.docker.com/ then create an Access Token by going to Settings then Security > New Access Token. Take no...
CICD, Docker, DevopsPublished on February 09, 2021
Compilation of most used Docker commands.
docker build . : Build a Dockerfile and create your own Image based on the file
-t NAME:TAG : Assign a NAME and a TAG to an image
docker build -t myapp:1.0 .
docker run IMAGE_NAME : Create and start a new conta...
DockerPublished on February 09, 2021