Howto

The problem with running commands over SSH is that generally you either have to type them yourself or upload a script file. However, with a bit of bash knowledge, you can pass entire scripts over SSH without having the .sh file on the remote machine.

First of all, install Docker on your system. Please refer to official docs https://docs.docker.com/engine/install/ https://docs.docker.com/engine/install/linux-postinstall/

For Linux, add to your ~/.bash_aliases the flowing lines

# Docker setup
alias aws='docker run --rm -ti -v ~/.aws:/root/.a...

Recent, am instalat ultimile înnoiri pentru Jenkins, care rulează pe o mașină virtuală pe Alpine Linux 13.x

E un proces extrem de simplu:

jenkins:~# apk update
jenkins:~# apk upgrade
jenkins:~# reboot

Imediat ce mașina virtuală s-a reîncărcat, am observat că Jenkins nu mai este disponibil

Am...

Terraform 1.0 — now generally available — marks a major milestone for interoperability, ease of upgrades, and maintenance for your automation workflows.

Recent am avut ceva durere de cap cu cele enumerate în titlu. Folosesc Bitbucket Pipelines la un proiect, iar pentru a face deploy pe AWS, am decis să merg cu CodeDeploy.

Aici este articolul de bază, de unde m-am inspirat: https://support.atlassian.com/bitbucket-cloud/docs/deploy-to-aws-with-code...