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: 4 months 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 (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T22:59:19.000Z (over 2 years ago)
- Last Synced: 2025-02-02T03:31:34.470Z (5 months 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
```