7

ドキュメント

エントリで複数のコマンドを渡そうとしていますが、conainter_commandsエラーが発生し続けます。それでも、個々のエントリと同じコマンドを渡すと、正常に動作します。

作品:

container_commands:
  01_remove_old_dump:
    command: 'rm -f /tmp/db.dump'
  02_get_new_dump:
    command: 'aws s3 cp s3://bucket/db.dump'

で失敗する/bin/sh: rm -f /tmp/db.dump: No such file or directory.

container_commands:
  01_remove_old_dump:
    command: ('rm -f /tmp/db.dump' 'aws s3 cp s3://bucket/db.dump')
4

1 に答える 1