summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYehonal <yehonal.azeroth@gmail.com>2021-04-27 22:58:47 +0200
committerGitHub <noreply@github.com>2021-04-27 22:58:47 +0200
commit3a0e81a93a0cda2f3f65db4bd0d5cb1bf0616fc2 (patch)
treed28f4ea67566fda49a677f29d40f36a5eb63d9ce
parentfaa914d724e2490c6bcc85d53b92caa15d083b8b (diff)
downloadwiki-3a0e81a93a0cda2f3f65db4bd0d5cb1bf0616fc2.tar.gz
wiki-3a0e81a93a0cda2f3f65db4bd0d5cb1bf0616fc2.tar.bz2
wiki-3a0e81a93a0cda2f3f65db4bd0d5cb1bf0616fc2.zip
Update Install-with-Docker.md
-rw-r--r--docs/Install-with-Docker.md10
1 files changed, 9 insertions, 1 deletions
diff --git a/docs/Install-with-Docker.md b/docs/Install-with-Docker.md
index 6c5bf1e..0885d99 100644
--- a/docs/Install-with-Docker.md
+++ b/docs/Install-with-Docker.md
@@ -77,7 +77,15 @@ NOTE: This command should be executed only at the first installation and when th
```
./acore.sh docker build
```
-This will take a while. Meanwhile you can go and drink a glass of wine :wine_glass:
+It will build docker images, compile the core and import needed SQL files automatically!
+This may take a while. Meanwhile you can go and drink a glass of wine :wine_glass:
+
+**NOTE For dev:** if you are working with code and you need a fast way to compile your binaries, the command above
+can be a bit overkill for you because you probably do not need to rebuild images or import SQL if you have not changed them.
+Therefore, we suggest to use one of the following solution instead:
+
+* `./acore.sh docker build:compiler` it only builds the dev image and compiles the sources without importing sql.
+* `./acore.sh docker dev:build` it's similar to the previous command, but it uses the dev-container which uses volumes instead of the container. It can be faster on some configurations.
**3) Run the containers**