Skip to content

Instantly share code, notes, and snippets.

@narenaryan
Last active March 8, 2020 19:07
Show Gist options
  • Select an option

  • Save narenaryan/573c0fdf40eab77e519ee3b35c571897 to your computer and use it in GitHub Desktop.

Select an option

Save narenaryan/573c0fdf40eab77e519ee3b35c571897 to your computer and use it in GitHub Desktop.
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