Skip to content

Instantly share code, notes, and snippets.

View bladedoyle's full-sized avatar

Blade Doyle bladedoyle

View GitHub Profile
@bladedoyle
bladedoyle / README.md
Last active November 16, 2017 12:08
Configure and Run an OpenBazaar 2.0 Server on a Raspberry Pi
@bladedoyle
bladedoyle / Dockerfile
Created September 27, 2017 15:27
OpenBazaar 1 Docker
FROM ubuntu:latest
RUN set -e && \
apt-get update -q && \
apt-get install -y git gconf2 gconf-service gvfs-bin libgtk2.0-0 libnotify4 \
wget libnss3 libxtst6 python xdg-utils libxss1 libasound2
RUN apt-get install -y python python-pip
WORKDIR /ob
@bladedoyle
bladedoyle / Dockerfile
Last active March 30, 2016 20:11
Dockerfile for Elasticsearch 2.3.0 on ARM
FROM armv7/armhf-debian
# setup debian sources
ENV DEBIAN_FRONTEND noninteractive
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 9165938D90FDDD2E && \
apt-get -y update && \
apt-get -y upgrade && \
apt-get -y --force-yes install sudo wget
ADD ejdk-8u77-linux-armv6-vfp-hflt.tar.gz /
@bladedoyle
bladedoyle / Dockerfile
Last active March 30, 2016 16:59
Dockerfile for Kibana 4.4.2 on ARM
FROM armv7/armhf-debian
ENV DEBIAN_FRONTEND noninteractive
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 9165938D90FDDD2E && \
apt-get -y update && \
apt-get -y upgrade && \
apt-get -y --force-yes install sudo npm wget gzip unzip git
RUN wget http://node-arm.herokuapp.com/node_latest_armhf.deb && \
dpkg -i node_latest_armhf.deb && \