github.com/buildpacks/pack@v0.33.3-0.20240516162812-884dd1837311/acceptance/testdata/pack_fixtures/inspect_image_published_output.toml (about)

     1  image_name = "{{.image_name}}"
     2  
     3  [remote_info]
     4  stack = "pack.test.stack"
     5  rebasable = {{.rebasable}}
     6  
     7    [remote_info.base_image]
     8    top_layer = "{{.base_image_top_layer}}"
     9    reference = "{{.base_image_ref}}"
    10  
    11    [[remote_info.run_images]]
    12    name = "pack-test/run"
    13  
    14    [[remote_info.run_images]]
    15    name = "{{.run_image_mirror}}"
    16  
    17    [[remote_info.buildpacks]]
    18    id = "simple/layers"
    19    version = "simple-layers-version"
    20  
    21    [[remote_info.processes]]
    22    type = "web"
    23    shell = "bash"
    24    command = "{{( StringsEscapeBackslash .web_command )}}"
    25    default = true
    26    args = [ "8080" ]
    27    working-dir = "{{ ( StringsEscapeBackslash .image_workdir ) }}"
    28  
    29    [[remote_info.processes]]
    30    type = "hello"
    31    shell = ""
    32    command = "{{.hello_command}}"
    33    default = false
    34    args = [ {{ ( StringsJoin (StringsDoubleQuote .hello_args) "," ) }} ]
    35    working-dir = "{{ ( StringsEscapeBackslash .image_workdir ) }}"
    36