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: deployment/docker/index.md
+12-12
Original file line number
Diff line number
Diff line change
@@ -7,15 +7,16 @@ description: Tutorial on how to deploy Fano application with Docker container.
7
7
8
8
## Prerequisite
9
9
10
-
You have working Docker and Docker Compose installation.
10
+
You must have a working Docker and Docker Compose installation.
11
11
12
-
It is assumed your current user is in group `docker`. If you are not in `docker` group, you have to prefix all docker command with `sudo` or run it with elevated privilege (root).
12
+
It is assumed that your current user is in the group `docker`. If you are not in the `docker` group, you have to prefix all Docker commands with sudo or run them with elevated privileges (root).
13
13
14
14
## Deploy Fano CLI-generated Project with Docker
15
15
16
-
[Fano CLI](/scaffolding-with-fano-cli/) since `v1.13.0` generates `docker-compose.yaml` file during creation of [CGI](/scaffolding-with-fano-cli/creating-project/#scaffolding-cgi-project), [FastCGI](/scaffolding-with-fano-cli/creating-project/#scaffolding-fcgid-project), [SCGI](/scaffolding-with-fano-cli/creating-project/#scaffolding-scgi-project) and [uwsgi](/scaffolding-with-fano-cli/creating-project/#scaffolding-uwsgi-project) project.
16
+
[Fano CLI](/scaffolding-with-fano-cli/) generates `docker-compose.yaml` file during creation of [CGI](/scaffolding-with-fano-cli/creating-project/#scaffolding-cgi-project), [FastCGI](/scaffolding-with-fano-cli/creating-project/#scaffolding-fcgid-project), [SCGI](/scaffolding-with-fano-cli/creating-project/#scaffolding-scgi-project) and [uwsgi](/scaffolding-with-fano-cli/creating-project/#scaffolding-uwsgi-project) project since `v1.13.0`.
17
+
18
+
This means you can skip the steps explained in the sections below and simply compile the application and run it with `docker-compose up`.
17
19
18
-
Which means you can skip steps explained in sections below and just compile application and then run with `docker-compose up`.
19
20
```
20
21
$ fanocli --project-fcgi=my-fcgi.fano
21
22
$ cd my-fcgi.fano
@@ -24,8 +25,8 @@ $ ./build.sh
24
25
$ docker-compose up
25
26
```
26
27
27
-
Open IP address of Fano application container to access it.
28
-
Read [Get IP address of Fano application docker container](#get-ip-address-of-fano-application-docker-container) for more information.
28
+
Open the IP address of the Fano application container to access it.
29
+
Read [Get IP Address of Fano Application Docker Container](#get-ip-address-of-fano-application-docker-container) for more information.
29
30
30
31
## Deploy Fano CGI Application with Docker
31
32
@@ -36,7 +37,7 @@ Create file name `Dockerfile` in project root directory with content as shown be
36
37
FROM httpd:2.4
37
38
```
38
39
39
-
This tells Docker to create container image based Apache 2.4. This is Debian-based image with common Apache modules are installed.
40
+
This tells Docker to create container image with Apache 2.4. This is Debian-based image with common Apache modules installed.
40
41
41
42
Now append lines below. We make sure that `mod_cgi`, `mod_cgid` and `mod_rewrite` modules are loaded by modifying main Apache configuration like so.
42
43
@@ -50,18 +51,17 @@ RUN sed -i \
50
51
/usr/local/apache2/conf/httpd.conf
51
52
```
52
53
53
-
In case unclear to you, regular expressions replace `#LoadModule mod_cgi` to become `LoadModule mod_cgi` effectively tells Apache to load `mod_cgi`.
54
-
55
-
We also tells Apache to include any additional configurations in `httpd-vhosts.conf` file and set `ServerName` configuration.
54
+
If it is not clear to you, regular expression replaces `#LoadModule mod_cgi` to become `LoadModule mod_cgi`, effectively telling Apache to load `mod_cgi`.
56
55
56
+
We also tell Apache to include any additional configurations in the `httpd-vhosts.conf` file and set the `ServerName` configuration.
57
57
58
-
Append line below to copy `vhost.example` file to `httpd-vhosts.conf` inside container. We will create `vhost.example`latter.
58
+
Append the line below to copy the `vhost.example` file to `httpd-vhosts.conf` inside the container. We will create `vhost.example`later.
0 commit comments