Bbeerlao
- Mar 25, 2023
- Joined Aug 15, 2020
- 2 discussions
- 12 posts
- 2 best answers
- Post posted... wait what? You got the answer!
- Best Answerset by ilsaul
I have the same problem. Additionally, server.py from netcow-mailfilter eats up to 100% CPU time.
- Edited
jtdoank I never used the helper script for backup. For your Nextcloud data, you only need to backup your data folder as well as your mysql tables. You can use any backup tool you want. As I’m using zfs, backups are a matter of ‘zfs snapshot’.
Modifying php.ini: Check mailcow/mailcow-dockerized590
Glad that it’s working now for you.
jtdoank Sure. You have to mount the /web Folder for your PHP-FPM Container:
Replace /path/to/your/persistent/datafolder with your local data folder (where nextcloud stores it’s user data; could be something like /var/www/html/data.
docker-compose.override.yml
php-fpm-mailcow: volumes: - /path/to/your/persistent/datafolder:/web/nextcloud/data:rw
Hi all,
after upgrading docker (through apt) restarting of mailcow-dockerized fails for some containers (postfix, dovecot e.g.):
Error response from daemon: Cannot restart container 6d5dd34b45de: driver failed programming external connectivity on endpoint mailcowdockerized_postfix-mailcow_1 (24ecf113debf4f2b902066f07b0ec3d5a8ae1d1ae2c2c91c2c89634809fee46e): Bind for [IPV6 removed]:587 failed: port is already allocated
It doesn’t matter if I do a docker-compose restart or a docker-compose down - I always have to fully stop mailcow-dockerized and restart my docker daemon; afterwards all comes up.
I have bound my containers to a specific IPV6 adress in docker-compose-override:
dovecot-mailcow:
ports:
- ‘IPV6 removed:143:143’
- ‘IPV6 removed:993:993’
- ‘IPV6 removed:110:110’
- ‘IPV6 removed:995:995’
- ‘IPV6 removed:4190:4190’postfix-mailcow:
ports:
- ‘IPV6 removed:25:25’
- ‘IPV6 removed:465:465’
- ‘IPV6 removed:587:587’The setup ran well for months now. The problem now might be related to the docker upgrade - any ideas?
Thanks in advance!
Hi,
I’m new to docker and mailcow. Mailcow is up and running behind Traefik and I have moved the vmail Volume to a zfs pool (according to this: ).
I have installed Nextcloud via the helper script, all went well. I now want to move the Nextcloud data folder (.data/web/nextcloud/data) to a zfs pool as well. I only want to move the Nextcloud data folder, not the whole /web folder. Any clue how I could achieve this?
Thanks in advance