summaryrefslogtreecommitdiff
path: root/docker/single/Dockerfile
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2015-06-29 17:56:34 +0200
committerKamil Trzcinski <ayufan@ayufan.eu>2015-07-06 16:42:52 +0200
commit954c1df256ac867635b31e82a032704e963a10ee (patch)
tree40bc344b6cec78f46d2823c25717a6810e2d9a7e /docker/single/Dockerfile
parent2b5007245adfd31e31fd2917902494853ecbc931 (diff)
downloadgitlab-ce-954c1df256ac867635b31e82a032704e963a10ee.tar.gz
Update Docker documentation to use single container
Diffstat (limited to 'docker/single/Dockerfile')
-rw-r--r--docker/single/Dockerfile37
1 files changed, 0 insertions, 37 deletions
diff --git a/docker/single/Dockerfile b/docker/single/Dockerfile
deleted file mode 100644
index 7e783eaa297..00000000000
--- a/docker/single/Dockerfile
+++ /dev/null
@@ -1,37 +0,0 @@
-FROM ubuntu:14.04
-MAINTAINER Sytse Sijbrandij
-
-# Install required packages
-RUN apt-get update -q \
- && DEBIAN_FRONTEND=noninteractive apt-get install -yq --no-install-recommends \
- ca-certificates \
- openssh-server \
- wget \
- apt-transport-https
-
-# Download & Install GitLab
-# If you run GitLab Enterprise Edition point it to a location where you have downloaded it.
-RUN echo "deb https://packages.gitlab.com/gitlab/gitlab-ce/ubuntu/ `lsb_release -cs` main" > /etc/apt/sources.list.d/gitlab_gitlab-ce.list
-RUN wget -q -O - https://packages.gitlab.com/gpg.key | apt-key add -
-RUN apt-get update && apt-get install -yq --no-install-recommends gitlab-ce
-
-# Manage SSHD through runit
-RUN mkdir -p /opt/gitlab/sv/sshd/supervise \
- && mkfifo /opt/gitlab/sv/sshd/supervise/ok \
- && printf "#!/bin/sh\nexec 2>&1\numask 077\nexec /usr/sbin/sshd -D" > /opt/gitlab/sv/sshd/run \
- && chmod a+x /opt/gitlab/sv/sshd/run \
- && ln -s /opt/gitlab/sv/sshd /opt/gitlab/service \
- && mkdir -p /var/run/sshd
-
-# Expose https & http & ssh
-EXPOSE 443 80 22
-
-# Define data volumes
-VOLUME ["/etc/gitlab", "/var/opt/gitlab", "/var/log/gitlab"]
-
-# Copy assets
-COPY assets/wrapper /usr/local/bin/
-COPY assets/gitlab.rb /etc/gitlab/
-
-# Wrapper to handle signal, trigger runit and reconfigure GitLab
-CMD ["/usr/local/bin/wrapper"]