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

image.yml « positive_tests « yaml_tests « ci « schema « editor « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4c2559d0800e0063ab511b0755951d5ed0dff506 (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
valid_image:
  image: alpine:latest

valid_image_basic:
  image:
    name: alpine:latest

valid_image_with_entrypoint:
  image:
    name: alpine:latest
    entrypoint:
      - /bin/sh
      - -c

valid_image_with_pull_policy:
  image:
    name: alpine:latest
    pull_policy: always

valid_image_with_pull_policies:
  image:
    name: alpine:latest
    pull_policy:
      - always
      - if-not-present

valid_image_with_docker:
  image:
    name: alpine:latest
    docker:
      platform: linux/amd64

valid_image_full:
  image:
    name: alpine:latest
    entrypoint:
      - /bin/sh
      - -c
    docker:
      platform: linux/amd64
    pull_policy: if-not-present