Skip to content

Instantly share code, notes, and snippets.

View vutny's full-sized avatar
💭
Debian@Inspiron3521

Denys Havrysh vutny

💭
Debian@Inspiron3521
View GitHub Profile
@vutny
vutny / install-docker-credential-ecr-login.sh
Created February 17, 2023 10:26
Install Amazon ECR Docker Credential Helper on GNU/Linux x86_64/amd64
#!/usr/bin/env bash
# install-docker-credential-ecr-login.sh
#
# Install and configure AWS CLI v2 and the Amazon ECR Docker Credential Helper
# Exit immediately on error
set -o errexit
# All variables should be explicitly declared
@vutny
vutny / keybase.md
Created May 3, 2020 10:13
keybase.md

Keybase proof

I hereby claim:

  • I am vutny on github.
  • I am vutny (https://keybase.io/vutny) on keybase.
  • I have a public key ASB0RWY9_ZPJNgnzSR5rCpNzBdBbatN-TM4vUhiiO62V-wo

To claim this, I am signing this object:

@vutny
vutny / README.rst
Last active May 13, 2023 16:40
Deploy HelloWeb application to Google Kubernetes Engine with managed certificate

HelloWeb example on GKE

Google Cloud Platform requirements

Networking highlights

@vutny
vutny / docker-push-gcr.sh
Last active March 31, 2020 09:31
Push local Docker images to Google Cloud Registry
#!/usr/bin/env bash
# Exit immediately on error
set -o errexit
# All variables should be explicitly declared
set -o nounset
# Exit on error in a loop
set -o pipefail
# Find local images tagged as ``example/*:latest`` and push them as ``gcr.io/my-example-project/*:latest``
@vutny
vutny / docker run x11 app
Created November 24, 2016 13:56
Run X11 GUI application in Docker without `ssh -X` forwarding
docker run -v /tmp/.X11-unix:/tmp/.X11-unix -e DISPLAY=unix$DISPLAY my-x11 xeyes