Posts tagged deployment
Docker Compose save and load
- 08 December 2022
I recently had the opportunity to extend the Docker Compose codebase to add the save
and load
subcommands.
In order to deploy software in an airgapped environment, both software and configurations must be transferred between networks. When Docker Compose is used for deployment, a the items to transfer between networks include the docker-compose.yml
config file and the Docker image for each service. There is no obvious existing tool to prepare these items for transfer between networks, so I decided to build my own.