Update README files.
Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
This commit is contained in:
27
README.md
27
README.md
@@ -42,24 +42,35 @@
|
|||||||
|
|
||||||
<h2 align="center">Installation</h2>
|
<h2 align="center">Installation</h2>
|
||||||
|
|
||||||
The installation procedure uses the <a href="https://www.docker.com">Docker container manager (docker.com)</a>. Make sure Docker is properly installed and working before attempting to install Mayan EDMS.
|
The easiest way to use Mayan EDMS is by using the official
|
||||||
|
[Docker](https://www.docker.com/) image. Make sure Docker is properly installed
|
||||||
|
and working before attempting to install Mayan EDMS.
|
||||||
|
|
||||||
Step 1- Initialize the installation
|
With Docker properly installed, proceed to download the Mayan EDMS image using
|
||||||
|
the command:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
docker run --rm -v mayan_media:/var/lib/mayan \
|
$ docker pull mayanedms/mayanedms:2.3
|
||||||
-v mayan_settings:/etc/mayan mayanedms/mayanedms mayan:init
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Step 2- Deploy a container
|
After the image finishes downloading, initialize a Mayan EDMS container.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
docker run -d --name mayan-edms --restart=always -p 80:80 \
|
$ docker run -d --name mayan-edms --restart=always -p 80:80 \
|
||||||
-v mayan_media:/var/lib/mayan -v mayan_settings:/etc/mayan mayanedms/mayanedms
|
-v mayan_data:/var/lib/mayan mayanedms/mayanedms
|
||||||
```
|
```
|
||||||
|
|
||||||
Step 3- Open a browser and go to http://localhost
|
Point your browser to the IP address 127.0.0.1 (or the alternate port chosen,
|
||||||
|
ie: 127.0.0.1:81) and use the automatically created admin account.
|
||||||
|
|
||||||
|
All files will be stored in the Docker volume ``mayan_data``
|
||||||
|
|
||||||
|
If another web server is running on port 80 use a different port in the ``-p``
|
||||||
|
option, ie: ``-p 81:80``.
|
||||||
|
|
||||||
|
For the complete set of installation, configuration, upgrade, and backup
|
||||||
|
instructions visit the Mayan EDMS Docker Hub page at:
|
||||||
|
https://hub.docker.com/r/mayanedms/mayanedms/
|
||||||
|
|
||||||
<h2 align="center">Important links</h2>
|
<h2 align="center">Important links</h2>
|
||||||
|
|
||||||
|
|||||||
36
README.rst
36
README.rst
@@ -16,25 +16,37 @@ are its workflow system, role based access control, and REST API.
|
|||||||
:align: center
|
:align: center
|
||||||
|
|
||||||
|
|
||||||
The installation procedure uses the Docker container manager
|
The easiest way to use Mayan EDMS is by using the official Docker_ image.
|
||||||
(docker.com). Make sure Docker is properly installed and working before
|
Make sure Docker is properly installed and working before attempting to install
|
||||||
attempting to install Mayan EDMS.
|
Mayan EDMS.
|
||||||
|
|
||||||
Step 1- Initialize the installation
|
With Docker properly installed, proceed to download the Mayan EDMS image using
|
||||||
|
the command:
|
||||||
|
|
||||||
.. code:: bash
|
.. code-block:: bash
|
||||||
|
|
||||||
docker run --rm -v mayan_media:/var/lib/mayan \
|
$ docker pull mayanedms/mayanedms:2.3
|
||||||
-v mayan_settings:/etc/mayan mayanedms/mayanedms mayan:init
|
|
||||||
|
|
||||||
Step 2- Deploy a container
|
After the image finishes downloading, initialize a Mayan EDMS container.
|
||||||
|
|
||||||
.. code:: bash
|
.. code-block:: bash
|
||||||
|
|
||||||
docker run -d --name mayan-edms --restart=always -p 80:80 \
|
$ docker run -d --name mayan-edms --restart=always -p 80:80 \
|
||||||
-v mayan_media:/var/lib/mayan -v mayan_settings:/etc/mayan mayanedms/mayanedms
|
-v mayan_data:/var/lib/mayan mayanedms/mayanedms
|
||||||
|
|
||||||
Step 3- Open a browser and go to http://localhost
|
Point your browser to the IP address 127.0.0.1 (or the alternate port chosen,
|
||||||
|
ie: 127.0.0.1:81) and use the automatically created admin account.
|
||||||
|
|
||||||
|
All files will be stored in the Docker volume ``mayan_data``
|
||||||
|
|
||||||
|
If another web server is running on port 80 use a different port in the ``-p``
|
||||||
|
option, ie: ``-p 81:80``.
|
||||||
|
|
||||||
|
For the complete set of installation, configuration, upgrade, and backup
|
||||||
|
instructions visit the Mayan EDMS Docker Hub page at:
|
||||||
|
https://hub.docker.com/r/mayanedms/mayanedms/
|
||||||
|
|
||||||
|
.. _Docker: https://www.docker.com/
|
||||||
|
|
||||||
|
|
||||||
Important links
|
Important links
|
||||||
|
|||||||
Reference in New Issue
Block a user