A tool for migrating Docker applications between servers
Project description
Docker Migration Tool
The Problem
Migrating Docker environments between servers can be challenging and error-prone. It involves multiple steps including backing up Docker data, transferring configurations, reinstalling services, and ensuring everything works correctly on the new server. This process is often manual, time-consuming, and requires specialized knowledge.
This tool solves this problem by automating the entire Docker migration workflow, reducing downtime, minimizing human error, and making migrations accessible even to those with limited Docker expertise.
Features
- Identifies Docker images, containers, networks, and other related data from the Docker Compose file.
- Creates backups of Docker data and packages them into zip or tar files.
- Optionally includes additional host files specified in the Docker Compose file.
- Transfers the created archives to a new server via VPN.
- Extracts the archives and reinstalls Docker on the new server.
- Validates the running state of Docker services after installation.
Project Structure
docker-migration-tool
├── src
│ ├── main.py # Entry point of the application
│ ├── docker_utils # Package for Docker utilities
│ │ ├── __init__.py
│ │ ├── compose_parser.py # Parses Docker Compose files
│ │ └── docker_backup.py # Handles Docker data backup
│ ├── archive # Package for archiving utilities
│ │ ├── __init__.py
│ │ ├── archiver.py # Creates and combines archives
│ │ └── extractor.py # Extracts archives on the new server
│ ├── transfer # Package for file transfer utilities
│ │ ├── __init__.py
│ │ └── file_transfer.py # Transfers files via VPN
│ └── validation # Package for validation utilities
│ ├── __init__.py
│ └── health_check.py # Checks Docker service health
├── requirements.txt # Project dependencies
├── setup.py # Packaging configuration
├── README.md # Project documentation
└── .gitignore # Git ignore file
Installation
Via pip
The simplest way to install the Docker Migration Tool is via pip:
pip install docker-migration
This will install the tool and all its dependencies. After installation, you can use the docker-migration command from anywhere.
Using a virtual environment (recommended)
For a clean installation isolated from system packages:
# Install virtualenv if needed
sudo apt-get update
sudo apt-get install -y python3-venv
# Create and activate a virtual environment
cd ~
python3 -m venv docker_migration_env
source docker_migration_env/bin/activate
# Install in the virtual environment
pip install docker-migration
# Test the command
docker-migration --help
From Source
Install the package:
pip install docker-migration
Usage
Basic Usage
-
Navigate to the directory containing your Docker Compose file.
-
Run the migration tool:
docker-migrationOr if installed from source:
python src/main.py -
Follow the prompts to complete the migration process.
Advanced Options
Backup Mode
docker-migration --mode backup [options]
Options:
--backup-all: Backup all Docker resources on the server instead of just those in docker-compose.yml--docker-src-base-dir PATH: Include a specific directory containing Docker source files in the backup--skip-images: Skip backing up Docker images (which can be large)--skip-containers: Skip backing up Docker containers--config-only: Only backup configurations (equivalent to using both --skip-images and --skip-containers)--pull-images: Pull Docker images defined in docker-compose.yml before backup--transfer: Transfer the backup to another location--destination PATH: Specify destination path (local path, user@host:/path for SCP, or ftp://user:pass@host/path for FTP)--ftp-user USERNAME: FTP username (if not specified in destination)--ftp-pass PASSWORD: FTP password (if not specified in destination)--no-prompt: Do not prompt for user input (automatically include current directory in backup)
Restore Mode
docker-migration --mode restore --backup-file PATH [options]
Options:
--backup-file PATH: Path to backup file (required for restore mode)--compose-file-path PATH: Path to docker-compose.yml file for restoration--extract-only: Extract files without restoring Docker components--target-dir PATH: Directory to extract application files to (for extract-only mode)
Use Cases
- Server Migration: Migrate a complete Docker environment from one server to another.
- Environment Backup: Create a backup of your Docker environment before making significant changes.
- Disaster Recovery: Restore Docker services quickly after a system failure.
- Dev/Test Cloning: Clone a production environment to development or testing servers.
- Configuration Extraction: Extract only configuration files without the Docker images for lightweight backups.
- Selective Migration: Migrate specific components of your Docker environment by using skip options.
Contributing
Contributions are welcome! Please open an issue or submit a pull request for any enhancements or bug fixes.
License
This project is licensed under the MIT License. See the LICENSE file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file docker_migration-0.1.7.tar.gz.
File metadata
- Download URL: docker_migration-0.1.7.tar.gz
- Upload date:
- Size: 24.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
38f32d16a81fa2646b9a033a8dc3709b6eb5d68a64d727f15c2f1b6fdc0b49b1
|
|
| MD5 |
34cdbfbda57b7318c3e88eb6e686a900
|
|
| BLAKE2b-256 |
5ad489542abd1309e380d23c5a83c816373df277a8632a9221786c4b8d815b68
|
File details
Details for the file docker_migration-0.1.7-py3-none-any.whl.
File metadata
- Download URL: docker_migration-0.1.7-py3-none-any.whl
- Upload date:
- Size: 26.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
796f945a4e75e9b97355463a25ea486380a19a4a6905ebb6cd58065b51615e67
|
|
| MD5 |
db3721633131357d8c8a08e6091b1564
|
|
| BLAKE2b-256 |
51f0e95bd98fa8c756e1990f2e33eb5ec62feb7c8e04b6dccfdf29c1ef762852
|