Update README.md

This commit is contained in:
Taha Mehrnavard 2025-10-19 09:20:10 +03:30 committed by GitHub
commit 6104065bfc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -84,3 +84,6 @@ If you use Podman's Docker wrapper, you need to enable legacy completion. See ab
| dvprune | `docker volume prune` | Cleanup dangling volumes | | dvprune | `docker volume prune` | Cleanup dangling volumes |
| dxc | `docker container exec` | Run a new command in a running container | | dxc | `docker container exec` | Run a new command in a running container |
| dxcit | `docker container exec -it` | Run a new command in a running container in an interactive shell | | dxcit | `docker container exec -it` | Run a new command in a running container in an interactive shell |
| dcx | `docker compose up -d --force-recreate --remove-orphans` | Starts all containers in detached mode, recreates them, and removes orphaned containers |
| dcxb | `docker compose up -d --force-recreate --build --remove-orphans` | Same as dcx, but also rebuilds images before starting the containers |
| dcxd | `docker compose down` | Stops and removes all containers, networks, and resources created by Docker Compose |