Created
March 8, 2020 16:23
-
-
Save narenaryan/4449682e22cb54d2b5df60c165b73c98 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| from zipfile import ZipFile | |
| docker_compose_config = None | |
| with ZipFile('config.zip') as zip_archive: | |
| docker_compose_config = zip_archive.read('config/docker/docker-compose.yaml') | |
| print(docker_compose_config) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment