You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.3 KiB
HTML
37 lines
1.3 KiB
HTML
7 years ago
|
{% import "macros.html" as macros %}
|
||
|
|
||
|
{% call macros.panel("info", "Step 1 - Download your configuration files") %}
|
||
|
<p>Docker Compose expects a project file, named <code>docker-compose.yml</code>
|
||
|
in a project directory. First create your project directory.</p>
|
||
|
|
||
7 years ago
|
<pre><code>mkdir /mailu
|
||
7 years ago
|
</pre></code>
|
||
|
|
||
|
<p>Then download the project file. A side configuration file makes it easier
|
||
|
to read and check the configuration variables generated by the wizard.</p>
|
||
|
|
||
7 years ago
|
<pre><code>cd /mailu
|
||
|
wget {{ url_for('.file', uid=uid, filepath='docker-compose.yml', _external=True) }}
|
||
|
wget {{ url_for('.file', uid=uid, filepath='mailu.env', _external=True) }}
|
||
7 years ago
|
</pre></code>
|
||
|
{% endcall %}
|
||
|
|
||
|
|
||
|
{% call macros.panel("info", "Step 2 - Review the configuration") %}
|
||
|
<p>We did not insert any malicious code on purpose in the configurations we
|
||
|
distribute, but your download could have been intercepted, or our wizard
|
||
|
website could have been compromised, so make sure you check the configuration
|
||
|
files before going any further.</p>
|
||
|
|
||
|
<p>When you are done checking them, check them one last time.</p>
|
||
|
{% endcall %}
|
||
|
|
||
|
{% call macros.panel("info", "Step 3 - Start the Compose project") %}
|
||
|
<p>To start your compose project, simply run the Docker Compose <code>up</code>
|
||
|
command.</p>
|
||
|
|
||
7 years ago
|
<pre><code>cd /mailu
|
||
7 years ago
|
docker-compose up -d
|
||
|
</pre></code>
|
||
|
{% endcall %}
|