-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
ImprovementThe functionality is working but can be improved.The functionality is working but can be improved.good first issueGood for newcomersGood for newcomers
Description
Description:
Currently, the service names in docker-compose.yml are inconsistent. For example:
- SMTP service container is named
smtp-server-container - Dovecot service container is named
dovecot-server - Ideally, SMTP should be named
postfixto align with the application naming convention.
Problem:
- Inconsistent service names can cause confusion and reduce maintainability.
- Other files (scripts, configs, volumes) reference these service names, so changing them must be done carefully to avoid breaking functionality.
Proposed Solution:
- Standardize all service names in
docker-compose.ymlto use the application name + -server suffix.
Example: smtp → postfix
- Check all other files that reference these service names (scripts, configs, volumes) and update them accordingly.
- Ensure all functionalities continue to work after renaming.
Additional Context:
- This is a maintenance and consistency improvement.
- No new features are added; only naming adjustments.
Metadata
Metadata
Assignees
Labels
ImprovementThe functionality is working but can be improved.The functionality is working but can be improved.good first issueGood for newcomersGood for newcomers