diff --git a/pages/common/takeout.md b/pages/common/takeout.md new file mode 100644 index 000000000..b4c404d4f --- /dev/null +++ b/pages/common/takeout.md @@ -0,0 +1,36 @@ +# takeout + +> A Docker-based development-only dependency manager. +> More information: . + +- Display a list of available services: + +`takeout enable` + +- Enable a specific service: + +`takeout enable {{name}}` + +- Enable a specific service with the default parameters: + +`takeout enable --default {{name}}` + +- Display a list of enabled services: + +`takeout disable` + +- Disable a specific service: + +`takeout disable {{name}}` + +- Disable all services: + +`takeout disable --all` + +- Start a specific container: + +`takeout start {{container_id}}` + +- Stop a specific container: + +`takeout stop {{container_id}}`