Last active
March 8, 2020 19:07
-
-
Save narenaryan/573c0fdf40eab77e519ee3b35c571897 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 | |
| with ZipFile('config.zip', 'w') as zip_archive: | |
| zip_archive.writestr( | |
| 'docker/docker-compose.yaml', # File to replace | |
| b'docker-compose-file-content-new' # Data | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment