Skip to content

Instantly share code, notes, and snippets.

View tyrell's full-sized avatar
💭
“Those who can imagine anything, can create the impossible.” ― Alan Turing

Tyrell Perera tyrell

💭
“Those who can imagine anything, can create the impossible.” ― Alan Turing
View GitHub Profile
@tyrell
tyrell / Dockerfile
Created May 19, 2016 20:09 — forked from dceejay/Dockerfile
Dockerfile for Node-RED
# Dockerfile for Node-RED - pulls latest master code from git
# Use the node.js v0.10.36 engine
FROM node:0.12-slim
MAINTAINER ceejay
# download latest stable node-red
RUN npm install -g node-red
# use external storage for the user directory
VOLUME /root/.node-red
@tyrell
tyrell / git.migrate
Last active August 29, 2015 14:26 — forked from niksumeiko/git.migrate
Moving git repository and all its branches, tags to a new remote repository keeping commits history
#!/bin/bash
# Sometimes you need to move your existing git repository
# to a new remote repository (/new remote origin).
# Here are a simple and quick steps that does exactly this.
#
# Let's assume we call "old repo" the repository you wish
# to move, and "new repo" the one you wish to move to.
#
### Step 1. Make sure you have a local copy of all "old repo"
### branches and tags.

Permission Cheat Sheet

You will use this one a lot in Wordpress :P

   chown -R www-data:www-data ./
   // set the proper owner