Find the Best Cosmetic Hospitals

Explore trusted cosmetic hospitals and make a confident choice for your transformation.

“Invest in yourself — your confidence is always worth it.”

Explore Cosmetic Hospitals

Start your journey today — compare options in one place.

Artifactory Tutorials: Setup Docker repository and push/pull images?

Step 1 – Install Docker

Step 2 – Enabe Docker insecure as Artifactory is insecure


18.206.205.28 - is public ip address
8081 - is a port for artifactory managment

vi /etc/docker/daemon.json

{
"insecure-registries" : ["18.206.205.28:8081"]
}

$ systemctl status docker
$ systemctl restart docker
$ docker infoCode language: PHP (php)

Step 3 – Login to docker


admin - username of artifactory
Admin123 - password of admin

$ docker login -u admin -p Admin123 18.206.205.28:8081

Step 4 – Create an image or pull an image/tag it


$ docker pull ubuntu
$ docker images
$ docker tag ubuntu 18.206.205.28:8081/devopsschool/ubuntu

Step 5 – Push the new images created


$ docker push 18.206.205.28:8081/devopsschool/ubuntu
$ docker images

Step 6 – Delete a image before test pull


$ docker images
$ docker rmi 18.206.205.28:8081/devopsschool/ubuntu
$ docker images
$ docker pull 18.206.205.28:8081/devopsschool/ubuntu

Find Trusted Cardiac Hospitals

Compare heart hospitals by city and services — all in one place.

Explore Hospitals
I'm Rajesh Kumar, a DevOps, SRE, DevSecOps, Cloud, and Platform Engineering expert passionate about sharing practical knowledge, real-world experiences, and industry best practices. I have worked at Cotocus and regularly write about technology, travel, investing, health, product reviews, and digital marketing through my various platforms. I publish technical articles at DevOps School, travel stories at Holiday Landmark, stock market insights at Stocks Mantra, health and fitness guidance at My Medic Plus, product reviews at TrueReviewNow, and SEO and digital marketing strategies at Wizbrand.

Related Posts

Artifactory: Comprehensive Troubleshooting Guide for JFrog Artifactory

Here’s a very comprehensive, up-to-date troubleshooting guide for JFrog Artifactory 7.x, covering the application, database, core components, all services, log files, and all the key troubleshooting commands.This…

Read More

Artifactory: Setting up Artifactory 7 High Availability Cluster

Here is a comprehensive, step-by-step guide to design, configure, and deploy JFrog Artifactory 7.x in High Availability (HA) mode—including all architectural and configuration considerations required for a…

Read More

Artifactory: Guide to change Artifactory filestore to AWS EFS (Elastic File System)

Here’s a comprehensive, step-by-step tutorial for migrating or configuring JFrog Artifactory 7.117.7+ (self-hosted, Linux) to use AWS EFS (Elastic File System) as its filestore. This guide brings…

Read More

Artifacatory: Upload Artifacts to Artifactory using NPM with Node.js Project

Step-by-Step Guide: Create a Node.js Project with npm and Upload Artifacts to Artifactory 1. Install Prerequisites 2. Initialize a New Node.js Project 3. Develop Your Node.js Artifact…

Read More

Artifactory: using Gradle and Uploading Artifacts to Artifactory

Step-by-Step Guide: Creating a Java Project with Gradle and Uploading Artifacts to Artifactory 1. Install Prerequisites 2. Create a New Java Project Using Gradle Open your terminal…

Read More

Jfrog Artifactory: Install Artifactory 7 with Postgresql

Here’s a clear, step-by-step command guide to install the latest JFrog Artifactory (7.117.7) on a Linux server with PostgreSQL as the external database. This walkthrough assumes Ubuntu/Debian,…

Read More