# Can not find custom plugin in Kong Manger

**URL:** https://discuss.konghq.com/t/can-not-find-custom-plugin-in-kong-manger/12568
**Category:** General
**Tags:** kong-gateway
**Created:** [April 11, 2024, 3:39am UTC](https://discuss.konghq.com/t/can-not-find-custom-plugin-in-kong-manger/12568 "2024-04-11T03:39:42Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![DUC\_Nguyen\_Viet\_VTI](https://yyz2.discourse-cdn.com/flex036/user_avatar/discuss.konghq.com/duc_nguyen_viet_vti/32/4411_2.png) [@DUC\_Nguyen\_Viet\_VTI](https://discuss.konghq.com/u/DUC_Nguyen_Viet_VTI)
#### Post date: [April 11, 2024, 3:39am UTC](https://discuss.konghq.com/t/can-not-find-custom-plugin-in-kong-manger/12568/1 "2024-04-11T03:39:42Z")

</div>

I followed the installation instructions on docker according to the link: [jeromeguillaume/kong-plugin-soap-xml-handling (github.com)](https://github.com/jeromeguillaume/kong-plugin-soap-xml-handling?tab=readme-ov-file#how-deploy-soapxml-handling-plugins-in-kong-gateway-standalone--docker)

Step 1: Clone git repo: git clone [GitHub - jeromeguillaume/kong-plugin-soap-xml-handling](https://github.com/jeromeguillaume/kong-plugin-soap-xml-handling.git)

Step 2: Create and prepare a PostgreDB called `kong-gateway-soap-xml-handling`. [See documentation](https://docs.konghq.com/gateway/latest/install/docker/#prepare-the-database)

Step 3: Ingore because i using Kong Manager free Mode

Step 4: Run docker run command below

```auto
docker run -d --name kong-gateway-soap-xml-handling \
--network=kong-net \
--link kong-database-soap-xml-handling:kong-database-soap-xml-handling \
--mount type=bind,source="$(pwd)"/kong/plugins/soap-xml-request-handling,destination=/usr/local/share/lua/5.1/kong/plugins/soap-xml-request-handling \
--mount type=bind,source="$(pwd)"/kong/plugins/soap-xml-response-handling,destination=/usr/local/share/lua/5.1/kong/plugins/soap-xml-response-handling \
--mount type=bind,source="$(pwd)"/kong/plugins/soap-xml-handling-lib,destination=/usr/local/share/lua/5.1/kong/plugins/soap-xml-handling-lib \
-e "KONG_DATABASE=postgres" \
-e "KONG_PG_HOST=kong-database-soap-xml-handling" \
-e "KONG_PG_USER=kong" \
-e "KONG_PG_PASSWORD=kongpass" \
-e "KONG_PROXY_ACCESS_LOG=/dev/stdout" \
-e "KONG_ADMIN_ACCESS_LOG=/dev/stdout" \
-e "KONG_PROXY_ERROR_LOG=/dev/stderr" \
-e "KONG_ADMIN_ERROR_LOG=/dev/stderr" \
-e "KONG_PROXY_LISTEN=0.0.0.0:8000, 0.0.0.0:8443 ssl http2" \
-e "KONG_ADMIN_LISTEN=0.0.0.0:8001, 0.0.0.0:8444 ssl http2" \
-e "KONG_ADMIN_GUI_LISTEN=0.0.0.0:8002, 0.0.0.0:10445 ssl" \
-e "KONG_ADMIN_GUI_URL=http://localhost:8002" \
-e "KONG_PLUGINS=bundled,soap-xml-request-handling,soap-xml-response-handling" \
-e "KONG_NGINX_WORKER_PROCESSES=2" \
-e KONG_LICENSE_DATA \
-p 8000:8000 \
-p 8443:8443 \
-p 8001:8001 \
-p 8002:8002 \
-p 8444:8444 \
kong/kong-gateway:3.5.0.3

```

Step 5: Access Kong Manager but i can not find custom plugin(image below)

 ![image](https://canada1.discourse-cdn.com/flex036/uploads/konghq/original/2X/3/3f4f3b17e68bf9065c470480546f8ead0edd8b55.png)

Step 6: I checked docker and there are plugin source folders

 ![image](https://canada1.discourse-cdn.com/flex036/uploads/konghq/original/2X/0/0c9f4df74b2610e48bc8001ac321ab9760550b58.png)

Step 7: I checked api `localhost:8001` and plugin was setting correct

 ![image](https://canada1.discourse-cdn.com/flex036/uploads/konghq/original/2X/d/dfa57bcdb3f0509fa247d558e4a5f9018b982eab.png)

What should I do fix it?  
Do I need a license because I am using Kong Manager is running in Free Mode  
Link issue: [Can not find plugin in Kong Manager · Issue #6 · jeromeguillaume/kong-plugin-soap-xml-handling (github.com)](https://github.com/jeromeguillaume/kong-plugin-soap-xml-handling/issues/6)

Thank you.
