Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.html « archives « content - gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1393d4e8547f901fa1f13dc130c3f5a77234766a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
---
title: Docs archives | GitLab
comments: false
last_updated: 2018-10-17
---

<h1>Docs archives</h1>

This website contains online versions of the GitLab
documentation: the default version, the latest released
version, and the two previously released versions.

<% unless @items['/_data/versions.yaml'][:offline].nil? %>
To browse a version that is not available online, see the
<a href='#offline-archives'>offline archives</a>. They're
available for download so that you can browse through them
locally.
<% end %>

<h2 id="default-version">Default version <a class="anchor" href="#default-version"></a></h2>

The <a href="/">default version</a> of this website
is built from the <code>doc</code> directories on the <code>master</code> branches of
<a href="https://gitlab.com/gitlab-org/gitlab-foss/tree/master/doc">GitLab Community Edition</a>,
<a href="https://gitlab.com/gitlab-org/gitlab/tree/master/doc">GitLab Enterprise Edition</a>,
<a href="https://gitlab.com/gitlab-org/omnibus-gitlab/tree/master/doc">Omnibus GitLab</a>, and
<a href="https://gitlab.com/gitlab-org/gitlab-runner/tree/master/docs">GitLab Runner</a>,
all of them brought together by the
<a href="https://gitlab.com/gitlab-org/gitlab-docs/">GitLab Docs</a>
project, which continuously deploys this content to <a href="/">docs.gitlab.com</a>.

<h2 id="latest-released-version">Latest released version <a class="anchor" href="#latest-released-version"></a></h2>

The latest released stable version is
<a href='/<%= @items['/_data/versions.yaml'][:online].first %>/'><%= @items['/_data/versions.yaml'][:online].first %></a>.

<h2 id="previously-released-versions">Previously released versions <a class="anchor" href="#previously-released-versions"></a></h2>

The following versions are available online:

<ul>
<!--
  List the online versions dropping the first and starting from the second one,
  since the first is always the current and we list it in the previous section.
-->
<% @items['/_data/versions.yaml'][:online].drop(1).each do |version| %>
  <li>
    <a href='/<%= version %>/'><%= version %></a>
  </li>
<% end %>
</ul>

<% unless @items['/_data/versions.yaml'][:offline].nil? %>
<h2 id="offline-archives">Offline archives <a class="anchor" href="#offline-archives"></a></h2>

The following archives are available and can be browsed offline. You'll need to have
<a href='https://docs.docker.com/install/' target='_blank'>Docker installed</a>
to access them.

<% @items['/_data/versions.yaml'][:offline].each do |version| %>

<h3><%= version %></h3>

<div class="highlight"><pre class="highlight shell"><code>docker run <span class="nt">-it</span> <span class="nt">--rm</span> <span class="nt">-p</span> 4000:4000 registry.gitlab.com/gitlab-org/gitlab-docs:<%= version %>
</code></pre></div>

<% end %>
<% end %>