mirror of https://github.com/docker/compose.git
18 lines
365 B
Gherkin
18 lines
365 B
Gherkin
Feature: Up
|
|
|
|
Background:
|
|
Given a compose file
|
|
"""
|
|
services:
|
|
simple:
|
|
image: alpine
|
|
command: top
|
|
"""
|
|
|
|
Scenario: --pull always
|
|
When I run "compose up --pull=always -d"
|
|
And the output contains "simple Pulled"
|
|
Then I run "compose up --pull=always -d"
|
|
And the output contains "simple Pulled"
|
|
|