Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gabfr/devops-bootcamp

This repository will hold all my scripts and study notes about DevOps
https://github.com/gabfr/devops-bootcamp

Last synced: about 1 month ago
JSON representation

This repository will hold all my scripts and study notes about DevOps

Awesome Lists containing this project

README

        

# DevOps Bootcamp

Down below we have a few notes I will make throughout the devops bootcamp course. Please, don't mind any noisy information. This repo. still a draft.

## Docker versioning

### 1. Tag the project

Tag the project specifying the current version of the project:

```
docker build -t gfrosalino/backend-scm:alpha .
```

OU

```
docker tag 835176d61b4d gfrosalino/backend-scm:alpha-2
```

### 2. Push to the registry

Upload your images layers to the registry with the following command:

```
docker push gfrosalino/backend-scm:alpha
```