mirror of
				https://github.com/containers/podman.git
				synced 2025-10-31 01:50:50 +08:00 
			
		
		
		
	 cb91bf96e0
			
		
	
	cb91bf96e0
	
	
	
		
			
			adding compose test descriptions and validations. Signed-off-by: baude <bbaude@redhat.com>
		
			
				
	
	
		
			11 lines
		
	
	
		
			169 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			169 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from flask import Flask
 | |
| import os
 | |
| app = Flask(__name__)
 | |
| 
 | |
| @app.route('/')
 | |
| def hello():
 | |
|     return "Podman rulez!"
 | |
| 
 | |
| if __name__ == '__main__':
 | |
|     app.run(host='0.0.0.0')
 |