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.
23 lines
604 B
Markdown
23 lines
604 B
Markdown
9 years ago
|
|
||
|
Upgrading the mail server
|
||
|
=========================
|
||
|
|
||
|
First check upstream for changes in the ``docker-compose.yml`` or in the
|
||
|
``freeposte.env`` files. Update these files, then simply pull the latest
|
||
|
images and recreate the containers :
|
||
|
|
||
|
```
|
||
|
docker-compose pull
|
||
|
docker-compose up -d
|
||
|
```
|
||
|
|
||
|
Monitoring the mail server
|
||
|
==========================
|
||
|
|
||
|
Logs are managed by Docker directly. You can easily read your logs using :
|
||
|
|
||
|
```
|
||
|
docker-compose logs
|
||
|
```
|
||
|
|
||
|
Docker is able to forward logs to multiple log engines. Read the following documentation or details: https://docs.docker.com/engine/admin/logging/overview/.
|