docker-compose variables and setup

This commit is contained in:
Ionut Filip
2018-10-16 12:34:55 +03:00
parent 11a8e49f05
commit 0d164486b4
9 changed files with 27 additions and 13 deletions

View File

@@ -14,12 +14,12 @@ avoid generic all-interfaces addresses like <code>0.0.0.0</code> or <code>::</co
<div class="form-group">
<label>IPv4 listen address</label>
<input class="form-control" type="text" name="ip4" placeholder="1.2.3.4">
<input class="form-control" type="text" name="bind4" placeholder="1.2.3.4">
</div>
<div class="form-group">
<label>IPv6 listen address</label>
<input class="form-control" type="text" name="ip6" placeholder="2001:be4:1234::1">
<input class="form-control" type="text" name="bind6" placeholder="2001:be4:1234::1">
</div>
<p>You server will be available under a main hostname but may expose multiple public

View File

@@ -0,0 +1,8 @@
{% call macros.panel("info", "Step 0 - Set root path") %}
<p>Before starting root path must be set</p>
<div class="form-group">
<label>Root path: </label>
<input class="form-control" type="text" name="root" placeholder="/mailu">
</div>
{% endcall %}

View File

@@ -9,6 +9,7 @@
{% endcall %}
<form method="post" action="{{ url_for(".submit") }}">
{% include "steps/root.html" %}
{% include "steps/flavor.html" %}
{% include "steps/expose.html" %}
{% include "steps/services.html" %}