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
Copy file name to clipboardExpand all lines: doc/src/sphinx/userguide/installing_clowder.rst
+11-7Lines changed: 11 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -181,12 +181,16 @@ for details.), we must tell Clowder which ports the services are using.
181
181
182
182
.. code:: bash
183
183
184
-
# make sure to pass the override file!
185
-
docker-compose -f docker-compose.override.yml up -d
184
+
docker-compose up -d
185
+
186
+
187
+
.. note::
188
+
By default, running ``docker-compose up -d`` uses the ``docker-compose.yml`` configuration and will apply overrides found in ``docker-compose.override.yml``. Neither file need to be specified on the command line.
189
+
186
190
187
191
4. Go to each Mongo and ElasticSearch to see it running
188
192
189
-
.. code:: bash
193
+
.. code:: text
190
194
191
195
If you get a response, it's working!
192
196
@@ -251,17 +255,17 @@ previous step.
251
255
- You can check by running ``docker ps`` and check that 3 services
252
256
are running.
253
257
- If not, start them with
254
-
``docker-compose -f docker-compose.override.yml up -d``
258
+
``docker-compose up -d``
255
259
256
260
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.
257
261
258
262
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.
259
263
260
264
.. note::
261
265
262
-
Use ``localhost:9000`` when building from source (clicking the green play button in IntelliJ) and running the services via ``docker-compose -f docker-compose.override.yml up -d``
266
+
Use ``localhost:9000`` when building from source (clicking the green play button in IntelliJ).``
263
267
264
-
Use ``localhost:8000`` when running from Docker only (without building from source) via ``docker-compose up -d``
268
+
Use ``localhost:8000`` when running from Docker only (without building from source via ``docker-compose up -d``)
265
269
266
270
.. _creatingLocalAccount
267
271
Creating a local Clowder account
@@ -383,7 +387,7 @@ Create a local Clowder account
383
387
Start Clowder:
384
388
385
389
1. Start required services (via
386
-
``docker-compose -f docker-compose.override.yml up -d`` from the root
390
+
``docker-compose up -d`` from the root
387
391
Clowder directory).
388
392
389
393
1. You can check if your services are already running using
0 commit comments