github.com/adnan-c/fabric_e2e_couchdb@v0.6.1-preview.0.20170228180935-21ce6b23cf91/devenv/README.md (about)

     1  ## Development Environment
     2  
     3  If you're looking for instructions on how to setup the Hyperledger Fabric development environment, see
     4  the [development environment setup readme](https://github.com/hyperledger/fabric/blob/master/docs/dev-setup/devenv.md).
     5  
     6  This folder contains the files which are used for bootstrapping the Hyperledger Fabric development environment.
     7  
     8  Below is a deployment diagram of the current development environment. Note that version numbers may be out of date.
     9  ![Development Environment Deployment Diagram](./images/openchain-dev-env-deployment-diagram.png)
    10  
    11  # Storage Backends
    12  
    13  You may optionally choose a docker storage backend other than the default.
    14  
    15  For a comparison of the assorted storage backends refer to [select a storage driver](https://docs.docker.com/engine/userguide/storagedriver/selectadriver/)
    16  
    17  Presently, the default is set to AUFS, but this may change in the future.
    18  
    19  To select a different storage backend (btrfs in this example), simply execute
    20  
    21  ```
    22  vagrant destroy
    23  DOCKER_STORAGE_BACKEND=btrfs vagrant up
    24  ```
    25  
    26  Currently supported backends are btfs, and aufs, with more to be added in the future.