mirror of
https://github.com/knadh/listmonk.git
synced 2024-11-13 02:55:04 +08:00
Compare commits
3 commits
8a27ca4605
...
0d364b5ccf
Author | SHA1 | Date | |
---|---|---|---|
|
0d364b5ccf | ||
|
a1ef000fb9 | ||
|
2b1b96e470 |
3 changed files with 12 additions and 10 deletions
File diff suppressed because one or more lines are too long
|
@ -1174,14 +1174,16 @@
|
|||
<p>If you installed listmonk as a service, you will need to stop it before overwriting the binary. Something like <code>sudo systemctl stop listmonk</code> or <code>sudo service listmonk stop</code> should work. Then overwrite the binary with the new version, then run <code>./listmonk --upgrade, and</code>start` it back with the same commands.</p>
|
||||
<p>If it's not running as a service, <code>pkill -9 listmonk</code> will stop the listmonk process.</p>
|
||||
<h2 id="docker">Docker<a class="headerlink" href="#docker" title="Permanent link">¶</a></h2>
|
||||
<blockquote>
|
||||
<p>Instructions for versions above v4.x.x using the latest <a href="https://github.com/knadh/listmonk/blob/master/docker-compose.yml">docker-compose.yml</a> file.</p>
|
||||
</blockquote>
|
||||
<ul>
|
||||
<li><code>docker compose down app</code> and stop the app container.</li>
|
||||
<li><code>docker compose pull</code> to pull the latest version from DockerHub.</li>
|
||||
<li><code>docker compose up app -d</code> to automatically run the upgrade and start listmonk.</li>
|
||||
</ul>
|
||||
<p><strong>Important:</strong> The following instructions are for the new <a href="https://github.com/knadh/listmonk/blob/master/docker-compose.yml">docker-compose.yml</a> file.</p>
|
||||
<div class="highlight"><pre><span></span><code>docker<span class="w"> </span>compose<span class="w"> </span>down<span class="w"> </span>app
|
||||
docker<span class="w"> </span>compose<span class="w"> </span>pull
|
||||
docker<span class="w"> </span>compose<span class="w"> </span>up<span class="w"> </span>app<span class="w"> </span>-d
|
||||
</code></pre></div>
|
||||
<p>If you are using an older docker-compose.yml file, you have to run the <code>--upgrade</code> step manually.</p>
|
||||
<div class="highlight"><pre><span></span><code>docker-compose<span class="w"> </span>down
|
||||
docker-compose<span class="w"> </span>pull<span class="w"> </span><span class="o">&&</span><span class="w"> </span>docker-compose<span class="w"> </span>run<span class="w"> </span>--rm<span class="w"> </span>app<span class="w"> </span>./listmonk<span class="w"> </span>--upgrade
|
||||
docker-compose<span class="w"> </span>up<span class="w"> </span>-d<span class="w"> </span>app<span class="w"> </span>db
|
||||
</code></pre></div>
|
||||
<h2 id="railway">Railway<a class="headerlink" href="#railway" title="Permanent link">¶</a></h2>
|
||||
<ul>
|
||||
<li>Head to your dashboard, and select your Listmonk project.</li>
|
||||
|
|
|
@ -15,7 +15,7 @@ curl -LO https://github.com/knadh/listmonk/raw/master/docker-compose.yml
|
|||
|
||||
# Run the services in the background.
|
||||
docker compose up -d
|
||||
</pre><p>Visit <code>http://localhost:9000</code></p><p><a href=/docs/installation>Installation docs →</a></p></div></div></div></div></section><div class=container><section class="lists feature"><h2>Mailing lists</h2><div class=center><img class=box src=static/images/lists.png alt="Screenshot of list management feature"></div><p>Manage millions of subscribers across many single and double opt-in one-way mailing lists
|
||||
</pre><p>Visit <code>http://localhost:9000</code></p><p><a href=/docs/installation>Installation docs →</a></p></div></div></div></div></section><div class=container><section class="lists feature"><h2>One-way mailing lists</h2><div class=center><img class=box src=static/images/lists.png alt="Screenshot of list management feature"></div><p>Manage millions of subscribers across many single and double opt-in one-way mailing lists
|
||||
with custom JSON attributes for each subscriber.
|
||||
Query and segment subscribers with SQL expressions.</p><p>Use the fast bulk importer (~10k records per second) or use HTTP/JSON APIs or interact with the simple
|
||||
table schema to integrate external CRMs and subscriber databases.</p></section><section class="tx feature"><h2>Transactional mails</h2><div class=center><img class=box src=static/images/tx.png alt="Screenshot of transactional API"></div><p>Simple API to send arbitrary transactional messages to subscribers
|
||||
|
|
Loading…
Reference in a new issue