Skip to content

Instantly share code, notes, and snippets.

View inafevwork's full-sized avatar

Iñaki Fernández inafevwork

  • Consulting firm
  • Madrid
View GitHub Profile
@inafevwork
inafevwork / openshift-cheatsheet.md
Created September 28, 2018 08:55 — forked from rafaeltuelho/openshift-cheatsheet.md
My Openshift Cheatsheet

My Openshift Cheatsheet

Install paks using yum in a Dockerfile

# Install Runtime Environment
RUN set -x && \ 2
    yum clean all && \
 REPOLIST=rhel-7-server-rpms,rhel-7-server-optional-rpms,rhel-7-server-thirdparty-oracle-java-rpms \
@inafevwork
inafevwork / setup.md
Created September 24, 2018 13:55 — forked from developius/README.md
Set up GitHub push with SSH keys

Create a repo. Make sure there is at least one file in it (even just the README) Generate ssh key:

ssh-keygen -t rsa -C "your_email@example.com"

Copy the contents of the file ~/.ssh/id_rsa.pub to your SSH keys in your GitHub account settings. Test SSH key:

ssh -T git@github.com