You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- ``docker-compose up -d`` - start up all required services
66
65
- ``docker-compose down`` - stop all docker containers
67
66
- ``docker-compose logs -f`` - see the logs
68
-
- ``docker info`` - check how many services are running
67
+
- ``docker ps`` - check how many services are running
68
+
- ``docker info`` - details about your docker version
69
69
70
-
- Server → containers → Running shows currently active containers.
71
-
You should expect to see 3 (MongoDB, Elasticsearch, RabbitMQ).
70
+
- After starting your services, run ``docker ps`` and check that 3 containers are running. The "Image" column should show ``rabbitmq``, ``elasticsearch`` and ``mongo``.
72
71
73
-
- Check on Docker services via the Docker Desktop GUI (on Windows and
72
+
- You could also check on Docker services via the Docker Desktop GUI (on Windows and
74
73
Mac)
75
74
76
75
Done! Now simply `create a new user (below) <easyUserCreation>`_
@@ -249,15 +248,14 @@ Done!
249
248
Now simply ensure your docker services are still running from the
250
249
previous step.
251
250
252
-
- You can check by running ``docker info`` and check that 3 services
251
+
- You can check by running ``docker ps`` and check that 3 services
253
252
are running.
254
253
- If not, start them with
255
254
``docker-compose -f docker-compose.override.yml up -d``
256
255
257
-
Now in IntelliJ, click the green play button (top right) to build Clowder from source! Give it a minute to finish.
256
+
Now in IntelliJ, click the green play button (top right) to build Clowder from source! Give it a minute to finish. Access Clowder via ``localhost:9000`` in the browser.
258
257
259
-
Access Clowder via ``localhost:9000`` in the
260
-
browser.
258
+
Also note, a handy debugging mode is enabled by default. You can run the debug mode by clicking the green "bug" button right beside the play button.
261
259
262
260
.. note::
263
261
@@ -389,7 +387,7 @@ Start Clowder:
389
387
Clowder directory).
390
388
391
389
1. You can check if your services are already running using
392
-
``docker info`` and check that 3 containers are active (MongoDB,
390
+
``docker ps`` and check that 3 containers are active (MongoDB,
393
391
ElasticSearch, and RabbitMQ) by looking at
394
392
``Server → Containser: 3``. Or check via the Docker Desktop GUI.
395
393
@@ -572,3 +570,4 @@ can be installed on other machines with Clowder configured to communicate with t
572
570
* ElasticSearch is used for text based search by Clowder.
0 commit comments