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
To install it, run the following commands (Docker must be installed on your system):
25
+
### Install the project prerequisites
26
+
The project has prerequisites:
27
+
28
+
-[Docker][docker] (1.12+)
29
+
-[Docker-composer][docker-compose] (1.10+)
30
+
-[GNU make][make]
31
+
32
+
To install Docker, refer to the official documentation for your operating system: https://docs.docker.com/engine/installation/.
33
+
34
+
Once Docker installed, to check its smooth running, run docker -v, you should get something like suit:
35
+
36
+
```
37
+
$ docker -v
38
+
Docker version 1.12.4, build 1564f02
39
+
```
40
+
> You must use the minimum version 1.12 of Docker.
41
+
42
+
To install the docker-composer, please also refer to the official documentation: https://docs.docker.com/compose/install/.
43
+
44
+
Once docker-composes installed (install it globally to be able and access from anywhere), to check its proper functioning, run docker-compose -v, you should get something like suit:
24
45
25
46
```
26
-
$ docker-compose up -d # Download, build and run Docker images
27
-
$ sh docker-ssh # ssh into local docker instance"
28
-
$ php certificationy.php # Run Certificationy CLI
29
-
$ exit # To exit bash docker
47
+
$ docker-compose -v
48
+
Docker-composer version 1.10.0, build 4bd6f1a
49
+
```
50
+
51
+
> You must use the docker-compose version 1.10 minimum.
52
+
53
+
A makefile allows you to manipulate the container simply and easily.
54
+
You have to be able to run `make -v`, which you are ready to choose:
55
+
56
+
```
57
+
$ make -v
58
+
GNU Make 4.1
59
+
Built for x86_64-pc-linux-gnu
60
+
Copyright (C) 1988-2014 Free Software Foundation, Inc.
61
+
GPLv3 + license: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
62
+
This is free software: you are allowed to modify and redistribute.
63
+
There is NO WARRANTY, to the extent of the will of the law.
64
+
```
65
+
66
+
> ** Note **: If you are using Windows, we strongly recommend that you use the Linux console included in
67
+
> Windows 10 (https://msdn.microsoft.com/en-us/commandline/wsl/install_guide) or to use an emulator for
68
+
> Command to be able to use `make` which will greatly facilitate the work.
69
+
70
+
### Using the Container
71
+
72
+
You should then be able to run `make` which will show you using the Makefile:
0 commit comments