Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Install Docker and download our docker-compose.yml file from GitHub. This file tells Docker how to fetch and start the component containers for Clowder and its dependencies.

  2. From a docker-aware terminal, go to the directory where you put the .yml file and run:
    docker-compose up

    This should start Clowder and its components.

  3. Now you need to determine which IP address Docker is running on:
    https://docs.docker.com/engine/userguide/networking/ shows how to use:
    docker network ls
    ifconfig

    ...to determine Docker's IP address.


    Older

     Older installations that use docker-machine may need to use:

    docker-machine ip
     
  4. You should be able to now access Clowder:
    <dockerIP>:9000

    You can also access the RabbitMQ management console at:

    <dockerIP>:15672

...