Created
January 4, 2016 13:35
-
-
Save rmetzler/715cd24ded7438ace962 to your computer and use it in GitHub Desktop.
docker-compose from STDIN
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
redis: | |
image: redis | |
ports: | |
- "6379:6379" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
cat docker-compose.yml | docker-compose -f - up |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
use with Python: http://stackoverflow.com/a/13332300