Provide some first configuration items

This commit is contained in:
kaiyou
2018-04-22 11:53:18 +02:00
parent 8efc51bc29
commit 5a9f01d473
5 changed files with 241 additions and 9 deletions

View File

@@ -4,15 +4,15 @@
<p>Docker Compose expects a project file, named <code>docker-compose.yml</code>
in a project directory. First create your project directory.</p>
<pre><code>mkdir /path/to/project
<pre><code>mkdir /mailu
</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>
<pre><code>cd /path/to/project
wget https://...
wget https://...
<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) }}
</pre></code>
{% endcall %}
@@ -30,7 +30,7 @@ files before going any further.</p>
<p>To start your compose project, simply run the Docker Compose <code>up</code>
command.</p>
<pre><code>cd /path/to/project
<pre><code>cd /mailu
docker-compose up -d
</pre></code>
{% endcall %}