|
|
@ -4,13 +4,13 @@
|
|
|
|
<p>Docker Compose expects a project file, named <code>docker-compose.yml</code>
|
|
|
|
<p>Docker Compose expects a project file, named <code>docker-compose.yml</code>
|
|
|
|
in a project directory. First create your project directory.</p>
|
|
|
|
in a project directory. First create your project directory.</p>
|
|
|
|
|
|
|
|
|
|
|
|
<pre><code>mkdir /mailu
|
|
|
|
<pre><code>mkdir {{ root }}
|
|
|
|
</pre></code>
|
|
|
|
</pre></code>
|
|
|
|
|
|
|
|
|
|
|
|
<p>Then download the project file. A side configuration file makes it easier
|
|
|
|
<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>
|
|
|
|
to read and check the configuration variables generated by the wizard.</p>
|
|
|
|
|
|
|
|
|
|
|
|
<pre><code>cd /mailu
|
|
|
|
<pre><code>cd {{ root }}
|
|
|
|
wget {{ url_for('.file', uid=uid, filepath='docker-compose.yml', _external=True) }}
|
|
|
|
wget {{ url_for('.file', uid=uid, filepath='docker-compose.yml', _external=True) }}
|
|
|
|
wget {{ url_for('.file', uid=uid, filepath='mailu.env', _external=True) }}
|
|
|
|
wget {{ url_for('.file', uid=uid, filepath='mailu.env', _external=True) }}
|
|
|
|
</pre></code>
|
|
|
|
</pre></code>
|
|
|
@ -30,7 +30,7 @@ files before going any further.</p>
|
|
|
|
<p>To start your compose project, simply run the Docker Compose <code>up</code>
|
|
|
|
<p>To start your compose project, simply run the Docker Compose <code>up</code>
|
|
|
|
command.</p>
|
|
|
|
command.</p>
|
|
|
|
|
|
|
|
|
|
|
|
<pre><code>cd /mailu
|
|
|
|
<pre><code>cd {{ root }}
|
|
|
|
docker-compose up -d
|
|
|
|
docker-compose up -d
|
|
|
|
</pre></code>
|
|
|
|
</pre></code>
|
|
|
|
{% endcall %}
|
|
|
|
{% endcall %}
|
|
|
|