0

実行すると以下のエラーが発生します

$ ansible-container ビルド

ERROR: for ansible-container  Container command '/usr/local/bin/builder.sh' not found or does not exist.

ansible/container.yml

version: "1"
services:
  web:
    image: busybox:latest

registries: {}

ansible/main.yml

- hosts:
  tasks:
    - name: Copy something
      copy: src=start_here.sh dest=/etc/start_here.sh
4

1 に答える 1

0

コンダクターの設定がありません。

version: "2"
settings:
  conductor:
    base: "centos:7"

次に、サービスセクションを開始できます

services:
  mongo:
    from: "centos:7"
于 2017-07-11T16:23:17.083 に答える