github.com/replicatedhq/ship@v0.55.0/integration/base/docker-push/input/.ship/ship.yml (about) 1 2 --- 3 assets: 4 v1: 5 - inline: 6 contents: | 7 #!/bin/bash 8 echo "installing nothing" 9 echo "config option: {{repl ConfigOption "test_option" }}" 10 dest: ./scripts/install.sh 11 mode: 0777 12 - inline: 13 contents: | 14 #!/bin/bash 15 echo "tested nothing" 16 dest: ./scripts/test.sh 17 mode: 0777 18 - docker: 19 image: replicated/helloscratch:1.0.0 20 source: public 21 dest: 'docker://{{repl ConfigOption "external_registry" }}/postgres:latest' 22 config: 23 v1: 24 - name: test_options 25 title: Test Options 26 description: testing testing 123 27 items: 28 - name: test_option 29 title: Test Option 30 type: text 31 - name: external_registry 32 title: External Registry 33 type: text 34 lifecycle: 35 v1: 36 - render: {}