up.feature 277 B

123456789101112131415
  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. Then the output contains "simple Pulled"