github.com/dnephin/dobi@v0.15.0/examples/env-vars/dobi.yaml (about) 1 2 mount=source: 3 bind: . 4 path: /app 5 6 image=bash: 7 image: bash 8 tags: ['4.4'] 9 pull: once 10 11 job=print-version: 12 use: bash 13 mounts: [source] 14 command: /app/print-version.sh 15 16 image=dist: 17 image: repo/myapp 18 context: . 19 tags: ["{env.VERSION}"] 20 depends: 21 - "print-version:capture(VERSION)"