Skip to content

Instantly share code, notes, and snippets.

View sryabkov's full-sized avatar

Sergei Ryabkov sryabkov

View GitHub Profile
@sryabkov
sryabkov / .gitconfig
Last active November 7, 2019 19:24
Git shortcuts (for .bash_profile or .bashrc)
[user]
name = Sergei Ryabkov
email = [email protected]
[diff]
tool = bcomp
[difftool]
prompt = false
@sryabkov
sryabkov / Dockerfile
Last active March 15, 2023 15:30
Passing SSH private key to atlantis
FROM runatlantis/atlantis:v0.6.0
ARG TERRAGRUNT_VER=v0.18.2
ARG TERRAGRUNT_DOWNLOAD_SITE="https://github.com/gruntwork-io/terragrunt/releases/download"
ARG TERRAGRUNT_DOWNLOAD_URL="${TERRAGRUNT_DOWNLOAD_SITE}/${TERRAGRUNT_VER}/terragrunt_linux_amd64"
RUN curl -sL "${TERRAGRUNT_DOWNLOAD_URL}" -o /usr/local/bin/terragrunt \
&& chmod +x /usr/local/bin/terragrunt
# https://github.com/GoogleCloudPlatform/cloud-sdk-docker/blob/master/alpine/Dockerfile