コンコースでの作業中に以下のエラーが発生します。
ハイジャック: バックエンド エラー: 終了ステータス: 500、メッセージ: {"Type":"","Message":"runc exec: 終了ステータス 1: 実行に失敗しました: container_linux.go:264: コンテナー プロセスの開始中に \"exec: \ \"./task-scripts/task_show_uname.sh\\": stat ./task-scripts/task_show_uname.sh: no such file or directory\"\n","Handle":""}
私は task.yml を持っています:
platform: linux
image_resource:
type: docker-image
source: {repository: busybox}
inputs:
- name: task-scripts
run:
path: ./task-scripts/task_show_uname.sh
***************
task_show_uname.sh runs a simple "uname -a" command.
***************
pipeline.yml は次のようになります。
resources:
- name: resource-tutorial
type: git
source:
uri: https://github.com/manmohan1391/concourse-tutorial.git
branch: master
jobs:
- name: job-hello-world
public: true
plan:
- task: hello-world
config:
platform: linux
image_resource:
type: docker-image
source: {repository: busybox}
run:
path: echo
args:
- hello world
- name: scripts
public: true
plan:
- get: resource-tutorial
- task: script-hello
file: resource-tutorial/tutorials/basic/task-scripts/task_show_uname.yml
何か案が?