Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
schoolpost committed Sep 5, 2018
2 parents efdd859 + 7ac0dce commit baf0aeb
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
15 changes: 11 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,20 +53,27 @@ Dashboard

Docker [ recommended ]
-------------------------------------
The easiest way to get up-and-running is to `install Docker <https://www.docker.com/>`_ & `install Docker-Compose <https://docs.docker.com/compose/install/>`_.
The easiest way to get up-and-running is to `install Docker <https://www.docker.com/>`_ & `install Docker-Compose <https://docs.docker.com/compose/install/>`_. You will also need X11.

.. code:: bash
# install X11
sudo apt-get install x11-xserver-utils
To build simply run the build script passing a path to a workspace folder on your system, mustache will store your processed datasets in this folder. ( make sure the folder has full access )

.. code:: bash
# change <USER> to your local user name.
# Builds the docker image and creates the required containers.
./compose.sh /home/user/Documents/datasets
sudo ./compose.sh /home/<USER>/Documents/datasets
# Run the containers and open the application.
./run.sh
sudo ./run.sh
# Stop the containers and close the application.
./stop.sh
sudo ./stop.sh
Manual Installation [developers]
Expand Down
2 changes: 1 addition & 1 deletion run.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
export COMPOSE_PROJECT_NAME=mustache
export MUSTACHE_WORKSPACE=/home/csaba/Documents/newdatasets
export MUSTACHE_WORKSPACE=
docker-compose up -d
xhost +
sleep 3
Expand Down

0 comments on commit baf0aeb

Please sign in to comment.