mirror of
				https://github.com/docker/compose.git
				synced 2025-11-03 21:25:21 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			311 B
		
	
	
	
		
			Gherkin
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			311 B
		
	
	
	
		
			Gherkin
		
	
	
	
	
	
Feature: Simple service up
 | 
						|
 | 
						|
Background:
 | 
						|
    Given a compose file
 | 
						|
        """
 | 
						|
        services:
 | 
						|
          simple:
 | 
						|
            image: alpine
 | 
						|
            command: top
 | 
						|
        """
 | 
						|
 | 
						|
Scenario: compose up
 | 
						|
    When I run "compose up -d"
 | 
						|
    Then the output contains "simple-1  Started"
 | 
						|
    And service "simple" is "Up"
 |