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

project_empty_state_spec.js.snap « __snapshots__ « list_page « components « explorer « registry « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d8ec9c3ca4d0ab2f8597473d8543d4be76d1e9be (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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`Registry Project Empty state to match the default snapshot 1`] = `
<div
  class="container-message"
  svg-path="bazFoo"
  title="There are no container images stored for this project"
>
  <p
    class="js-no-container-images-text"
  >
    With the Container Registry, every project can have its own space to store its Docker images. 
    <gl-link-stub
      href="baz"
      target="_blank"
    >
      More Information
    </gl-link-stub>
  </p>
   
  <h5>
    CLI Commands
  </h5>
   
  <p
    class="js-not-logged-in-to-registry-text"
  >
    If you are not already logged in, you need to authenticate to the Container Registry by using your GitLab username and password. If you have 
    <gl-link-stub
      href="barBaz"
      target="_blank"
    >
      Two-Factor Authentication
    </gl-link-stub>
     enabled, use a 
    <gl-link-stub
      href="fooBaz"
      target="_blank"
    >
      Personal Access Token
    </gl-link-stub>
     instead of a password.
  </p>
   
  <div
    class="input-group append-bottom-10"
  >
    <input
      class="form-control monospace"
      readonly="readonly"
      type="text"
    />
     
    <span
      class="input-group-append"
    >
      <clipboard-button-stub
        class="input-group-text"
        cssclass="btn-default"
        text="docker login bar"
        title="Copy login command"
        tooltipplacement="top"
      />
    </span>
  </div>
   
  <p />
   
  <p>
    
      You can add an image to this registry with the following commands:
    
  </p>
   
  <div
    class="input-group append-bottom-10"
  >
    <input
      class="form-control monospace"
      readonly="readonly"
      type="text"
    />
     
    <span
      class="input-group-append"
    >
      <clipboard-button-stub
        class="input-group-text"
        cssclass="btn-default"
        text="docker build -t foo ."
        title="Copy build command"
        tooltipplacement="top"
      />
    </span>
  </div>
   
  <div
    class="input-group"
  >
    <input
      class="form-control monospace"
      readonly="readonly"
      type="text"
    />
     
    <span
      class="input-group-append"
    >
      <clipboard-button-stub
        class="input-group-text"
        cssclass="btn-default"
        text="docker push foo"
        title="Copy push command"
        tooltipplacement="top"
      />
    </span>
  </div>
</div>
`;