Docker resources for WSO2 Enterprise Integration platform are open source and we encourage contributions from our community.
The recommended way to discuss anything related to WSO2 products is via our mailing lists. First, go to https://wso2.com/mail/ and subscribe to any mailing lists. Here are the two most popular lists:
- [email protected]: To discuss all WSO2 products.
- [email protected]: To discuss the architecture of WSO2 products.
We encourage you to report any problems in the WSO2 product Docker resources or their documentation by creating GitHub issues in the respective repositories. The issues page on GitHub is for tracking bugs and feature requests. When posing a new issue, follow the guidelines below.
- Check whether the issue has already been reported.
- Create a separate issue for each bug you are reporting or feature you are requesting.
If you like to contribute with a bug fix or a new feature, start by posting an issue and discussing the best way to implement it.
Unlike most projects, development for this repository is carried out on the 4.2.x
branch.
Please follow these guidelines when contributing to the code:
- Fork the current repository.
- Create a topic branch from the
4.2.x
branch. - Make commits in logical units.
- Before you send out the pull request, sync your forked repository with a remote repository. This makes your pull request simple and clear.
git clone https://github.com/<user>/docker-ei.git
git remote add upstream https://github.com/wso2/docker-ei.git
git fetch upstream
git checkout -b <topic-branch> upstream/4.2.x
# add some work
git push origin <topic-branch>
# submit pull request
Thanks for contributing!