CloudMan is a cloud infrastructure and application manager, primarily for Galaxy.
CloudMan is intended to be installed via the CloudMan Helm chart.
git clone https://github.com/galaxyproject/cloudman.git
cd cloudman
pip install -r requirements.txt
python cloudman/manage.py migrate
gunicorn --log-level debug cloudman.wsgi
The CloudMan API will be available at http://127.0.0.1:8000/cloudman/api/v1/
To add the UI, see https://github.com/cloudve/cloudman-ui
To build a Docker image, run docker build -t galaxy/cloudman:latest .
Push it to Dockerhub with:
docker login
docker push galaxy/cloudman:latest