aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/md/Unit-tests-Docker.md
diff options
context:
space:
mode:
authorVirtualTam <virtualtam@flibidi.net>2018-06-17 13:45:39 +0200
committerVirtualTam <virtualtam@flibidi.net>2018-06-17 13:45:39 +0200
commitc064d3179e0396983bdf8dee545388e4142ed842 (patch)
tree8c452980d8c7d6f98aa61e2d814377a1efc70fb3 /doc/md/Unit-tests-Docker.md
parent2a3fe990dd0730fce9465bbef6ad1a01054f775d (diff)
downloadShaarli-c064d3179e0396983bdf8dee545388e4142ed842.tar.gz
Shaarli-c064d3179e0396983bdf8dee545388e4142ed842.tar.zst
Shaarli-c064d3179e0396983bdf8dee545388e4142ed842.zip
docker: update image and usage documentation
Relates to https://github.com/shaarli/Shaarli/issues/1153 Signed-off-by: VirtualTam <virtualtam@flibidi.net>
Diffstat (limited to 'doc/md/Unit-tests-Docker.md')
-rw-r--r--doc/md/Unit-tests-Docker.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/md/Unit-tests-Docker.md b/doc/md/Unit-tests-Docker.md
index c2de7cc7..59bd5b45 100644
--- a/doc/md/Unit-tests-Docker.md
+++ b/doc/md/Unit-tests-Docker.md
@@ -8,7 +8,7 @@ Read first:
8 8
9### Docker test images 9### Docker test images
10 10
11Test Dockerfiles are located under `docker/tests/<distribution>/Dockerfile`, 11Test Dockerfiles are located under `tests/docker/<distribution>/Dockerfile`,
12and can be used to build Docker images to run Shaarli test suites under common 12and can be used to build Docker images to run Shaarli test suites under common
13Linux environments. 13Linux environments.
14 14
@@ -27,7 +27,7 @@ What's behind the curtains:
27 - test PHP dependencies (OS packages) 27 - test PHP dependencies (OS packages)
28 - Composer 28 - Composer
29- the local workspace is mapped to the container's `/shaarli/` directory, 29- the local workspace is mapped to the container's `/shaarli/` directory,
30- the files are rsync'd to so tests are run using a standard Linux user account 30- the files are rsync'd so tests are run using a standard Linux user account
31 (running tests as `root` would bypass permission checks and may hide issues) 31 (running tests as `root` would bypass permission checks and may hide issues)
32- the tests are run inside the container. 32- the tests are run inside the container.
33 33
@@ -36,7 +36,7 @@ What's behind the curtains:
36```bash 36```bash
37# build the Debian 9 Docker image 37# build the Debian 9 Docker image
38$ cd /path/to/shaarli 38$ cd /path/to/shaarli
39$ cd docker/test/debian9 39$ cd tests/docker/debian9
40$ docker build -t shaarli-test:debian9 . 40$ docker build -t shaarli-test:debian9 .
41``` 41```
42 42