Skip to content

Instantly share code, notes, and snippets.

@y16ra
Last active August 29, 2015 14:04
Show Gist options
  • Save y16ra/dfea140f80c1ce0d4baa to your computer and use it in GitHub Desktop.
Save y16ra/dfea140f80c1ce0d4baa to your computer and use it in GitHub Desktop.
GitLab作成用Dockerfile
# ubuntu 14.04 for Gitlab
FROM ubuntu:14.04
MAINTAINER hogehoge
RUN apt-get update
RUN apt-get -y install wget zip gcc openssh-server postfix
RUN wget https://downloads-packages.s3.amazonaws.com/ubuntu-14.04/gitlab_7.1.1-omnibus-1_amd64.deb
RUN dpkg -i gitlab_7.1.1-omnibus-1_amd64.deb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment