Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/gabfr/devops-bootcamp
- Owner: gabfr
- Created: 2019-09-25T18:35:32.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T22:59:19.000Z (about 2 years ago)
- Last Synced: 2023-03-27T11:00:47.438Z (almost 2 years ago)
- Language: JavaScript
- Size: 3.4 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 36
-
Metadata Files:
- Readme: README.md
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
```