-
Notifications
You must be signed in to change notification settings - Fork 547
Open
Labels
Description
Description
Issue 1:
Remove additional SQL commands:
CREATE DATABASE apim_db CHARACTER SET latin1;
CREATE DATABASE shared_db CHARACTER SET latin1;
GRANT ALL ON apim_db.* TO 'apimadmin'@'%';
CREATE USER 'sharedadmin'@'%' IDENTIFIED BY 'sharedadmin';
GRANT ALL ON shared_db.* TO 'sharedadmin'@'%';
Change this to:
CREATE DATABASE apim_db CHARACTER SET latin1;
CREATE DATABASE shared_db CHARACTER SET latin1;
Issue 2:
Remove unnecessary informations:
- WSO2 API Manager 4.6.0 provides three Docker images:
- All-in-one - [wso2am](https://hub.docker.com/r/wso2/wso2am)
- Universal Gateway (GW) - [wso2am-universal-gw](https://hub.docker.com/r/wso2/wso2am-universal-gw)
Rewrite like this:
- For this pattern, you must use the All-in-one - [wso2am](https://hub.docker.com/r/wso2/wso2am) image.
Suggested Fix
Include in the description
Version(s)
4.5.0, 4.6.0, master