From a1ff2774a740f961273df6c308b1e50b5b5e29a2 Mon Sep 17 00:00:00 2001 From: Eduard Tolosa Date: Fri, 21 Feb 2025 20:21:31 +0000 Subject: [PATCH] (docs): update README. --- README.md | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a1b348f..666f1ca 100644 --- a/README.md +++ b/README.md @@ -3,4 +3,35 @@ Migrate from Docker to Podman. fly-to-podman is a small bash script that helps you migrate from Docker to Podman. It will migrate your Docker containers, images, and volumes to Podman, as well as keep your container data and configurations (mounts, ports, etc.) intact. -Full blog post: [From Docker to Podman: full migration to rootless](https://www.edu4rdshl.dev/posts/from-docker-to-podman-full-migration-to-rootless/) \ No newline at end of file +Full blog post: [From Docker to Podman: full migration to rootless](https://www.edu4rdshl.dev/posts/from-docker-to-podman-full-migration-to-rootless/) + +# What it does + +- Migrate Docker images to Podman (including tags) +- Migrate Docker volumes to Podman (including all data) +- Migrate Docker networks to Podman (including names, IPs, gateways, IP ranges, etc.) +- Migrate Docker containers to Podman (including names, IDs, and statuses such as restart policy, etc.) +- Keep container data and configurations (mounts, exposed ports, etc.) + +# Requirements + +- Docker +- Podman +- bash +- jq +- rsync + +# Usage + +```bash +fly-to-podman.sh {images|volumes|containers|full} + images: Migrate Docker images to Podman + volumes: Migrate Docker volumes to Podman + containers: Migrate Docker containers to Podman + networks: Migrate Docker networks to Podman + full: Migrate Docker images, volumes, and containers to Podman +``` + +# Issues and contributions + +If you find any issues or have any suggestions, please open an issue or a pull request.