You need to reboot the host after extending the volume, Once reboot you can see the extended volume with fdisk -l command
>fdisk /dev/sda
root@csl-jsl-04-prod:~# fdisk /dev/sda
Clone original repository | |
Check current remote url | |
>git remote -v | |
Set new remote url | |
>git remote set-url origin <new_git_repo_url> | |
Push all branches to new repository | |
git push -u origin --all |
Enter this in the search box along with your search terms:
Get all gists from the user santisbon.
user:santisbon
Find all gists with a .yml extension.
extension:yml
Find all gists with HTML files.
language:html
Generate sha256 values | |
>sha256sum <file name> |
Install docker on ubuntu | |
>apt install docker.io | |
Install docker-compose on ubuntu | |
>apt install docker-compose | |
Build Image | |
>docker build . -t <image_name> | |
Run container |
Master - jenkins-master-docker-compose.yml | |
jenkins_app: | |
image: jenkins:2.60.1 | |
container_name: jenkins_master | |
restart: always | |
ports: | |
- "80:8080" |