You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When dde System containers have ports in conflict with other programs, there is currently no way to change them with docker-compose.override.yml due to the nature how the YAML arrays will be merged in this case.
The only solution in case of port conflicts, is to either kill the software that is using the same port as the dde service (not possible in my case), or to deactivate the dde system service all together with following lines in the docker-compose.override.yml:
Example for Mailcrab:
services:
mailcrab:
deploy:
replicas: 0# disables mailcrab as port is in conflict with protonmail bridge
According to other people, the PR #38 might make that possible, but is stale since a while ago.
The text was updated successfully, but these errors were encountered:
When dde System containers have ports in conflict with other programs, there is currently no way to change them with
docker-compose.override.yml
due to the nature how the YAML arrays will be merged in this case.The only solution in case of port conflicts, is to either kill the software that is using the same port as the dde service (not possible in my case), or to deactivate the dde system service all together with following lines in the
docker-compose.override.yml
:Example for Mailcrab:
According to other people, the PR #38 might make that possible, but is stale since a while ago.
The text was updated successfully, but these errors were encountered: