mirror of
https://github.com/docker/compose.git
synced 2025-04-08 17:05:13 +02:00
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"
|
|
|