Skip to content

Instantly share code, notes, and snippets.

View spujadas's full-sized avatar

Sébastien Pujadas spujadas

View GitHub Profile
@spujadas
spujadas / Dockerfile
Created May 19, 2015 20:18
Starter kit for nginx Docker image
FROM phusion/baseimage
MAINTAINER Sebastien Pujadas http://pujadas.net
ENV REFRESHED_AT 2014-10-25
### install nginx and logstash-forwarder
RUN apt-get update -qq && apt-get install -qqy curl
RUN curl http://nginx.org/keys/nginx_signing.key | apt-key add -
RUN echo deb http://nginx.org/packages/ubuntu/ trusty nginx > /etc/apt/sources.list.d/nginx.list
@spujadas
spujadas / Dockerfile
Last active January 31, 2016 10:23
Dockerfile for Flarum commit d5229bd3
# Dockerfile for Flarum, based on Flarum's Vagrantfile
# (https://github.com/flarum/flarum/blob/master/Vagrantfile)
# which uses scripts from Vaprobash
# (https://github.com/fideloper/Vaprobash)
# Run with:
# docker-compose up flarum
# docker-compose run --service-ports flarum <custom command, e.g. /bin/bash>
FROM phusion/baseimage