Skip to content

Commit d309c26

Browse files
committed
added documentation about how to run intelowl with plain docker compose
1 parent 27d3dd6 commit d309c26

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

docs/IntelOwl/installation.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ The CLI provides the primitives to correctly build, run or stop the containers f
229229
<ul>
230230
<li>It is possible to attach every optional docker container that IntelOwl has:
231231
<a href="https://intelowlproject.github.io/docs/IntelOwl/advanced_configuration/#multi-queue"><em>multi_queue</em></a> with <em>traefik</em> enabled while every <a href="https://intelowlproject.github.io/docs/IntelOwl/advanced_usage/#optional-analyzers">optional docker analyzer</a> is active.</li>
232-
<li>It is possible to insert an optional docker argument that the CLI will pass to <code>docker-compose</code></li>
232+
<li>It is possible to insert an optional docker argument that the CLI will pass to <code>docker compose</code></li>
233233
</ul>
234234
</div>
235235

@@ -260,6 +260,16 @@ Starting from IntelOwl 4.0.0, with the startup script you can select which versi
260260
This can be helpful to keep using old versions in case of retrocompatibility issues. The <code>--version</code> parameter checks out the Git Repository to the Tag of the version that you have chosen. This means that if you checkout to a v3.x.x version, you won't have the <code>--version</code> parameter anymore so you would need to manually checkout back to the <code>master</code> branch to use newer versions.
261261
</div>
262262

263+
<div class="admonition note">
264+
<p class="admonition-title">Note</p>
265+
If, for any reason, the `start` script does not work in your environment, we suggest to use plain `docker compose` and configuring manually all the optional containers you need.
266+
267+
The basic replacement of `./start prod up` would be:
268+
```commandline
269+
docker compose --project-directory docker -f docker/default.yml -f docker/postgres.override.yml -f docker/redis.override.yml -f docker/nginx.override.yml -p intelowl up
270+
```
271+
</div>
272+
263273
### Stop
264274

265275
To stop the application you have to:

0 commit comments

Comments
 (0)