Skip to content

Instantly share code, notes, and snippets.

View ermin-muratovic's full-sized avatar
🤖
01100110 01101111 01100011 01110101 01110011 01101001 01101110 01100111

Ermin Muratovic ermin-muratovic

🤖
01100110 01101111 01100011 01110101 01110011 01101001 01101110 01100111
View GitHub Profile
@BretFisher
BretFisher / .travis.yml
Created February 15, 2016 21:26
Travis-CI Docker Image Build and Push to AWS ECR
sudo: required #is required to use docker service in travis
language: php #can be any language, just php for example
services:
- docker # required, but travis uses older version of docker :(
install:
- echo "install nothing!" # put your normal pre-testing installs here
@omegahm
omegahm / create_labels.sh
Created April 7, 2015 19:00
Create Gtihub labels from Bash
#!/usr/bin/env bash
# Colours picked from https://robinpowered.com/blog/best-practice-system-for-organizing-and-tagging-github-issues/
###
# Label definitions
###
declare -A LABELS
# Platform
@zaiste
zaiste / playbook.yml
Last active March 3, 2017 10:42
Ansible: ElasticSearch + NodeJS
---
- hosts: vagrant
user: vagrant
tasks:
- name: install python-apt
raw: "apt-get install -y python-apt"
- name: Install python-software-properties
apt: pkg=python-software-properties state=installed