up.feature 365 B

1234567891011121314151617
  1. Feature: Up
  2. Background:
  3. Given a compose file
  4. """
  5. services:
  6. simple:
  7. image: alpine
  8. command: top
  9. """
  10. Scenario: --pull always
  11. When I run "compose up --pull=always -d"
  12. And the output contains "simple Pulled"
  13. Then I run "compose up --pull=always -d"
  14. And the output contains "simple Pulled"