# Pongo: a new plugin test tool

**URL:** https://discuss.konghq.com/t/pongo-a-new-plugin-test-tool/4570
**Category:** General
**Created:** [October 5, 2019, 9:22am UTC](https://discuss.konghq.com/t/pongo-a-new-plugin-test-tool/4570 "2019-10-05T09:22:50Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Tieske](https://yyz2.discourse-cdn.com/flex036/user_avatar/discuss.konghq.com/tieske/32/54_2.png) [@Tieske](https://discuss.konghq.com/u/Tieske)
#### Post date: [October 5, 2019, 9:22am UTC](https://discuss.konghq.com/t/pongo-a-new-plugin-test-tool/4570/1 "2019-10-05T09:22:50Z")

</div>

Happy to announce that we just open sourced a new Kong Plugin test tool called “Pongo”. The first tool that cannot only test plugins against the open source version of Kong, but also against Kong Enterprise!

Usage instruction are in the [Pongo repository](https://github.com/Kong/kong-pongo/blob/master/README.md). The tool is based on Docker, so more light-weight and faster than the existing Vagrant solution.

Happy testing, and please file any issues you run into as issues on the Github repo!

---

<div class="post-metadata">

### Author: ![flowdopip](https://yyz2.discourse-cdn.com/flex036/user_avatar/discuss.konghq.com/flowdopip/32/1704_2.png) [@flowdopip](https://discuss.konghq.com/u/flowdopip)
#### Post date: [March 16, 2022, 2:10pm UTC](https://discuss.konghq.com/t/pongo-a-new-plugin-test-tool/4570/2 "2022-03-16T14:10:33Z")

</div>

Why not provide an official docker image to run on any ci system?

---

<div class="post-metadata">

### Author: ![flowdopip](https://yyz2.discourse-cdn.com/flex036/user_avatar/discuss.konghq.com/flowdopip/32/1704_2.png) [@flowdopip](https://discuss.konghq.com/u/flowdopip)
#### Post date: [March 16, 2022, 10:41pm UTC](https://discuss.konghq.com/t/pongo-a-new-plugin-test-tool/4570/3 "2022-03-16T22:41:32Z")

</div>

trying to do a base image to run on my plugins pipeline bit getting problems with docker in docker:

```auto

FROM ubuntu:20.04 as build
USER root

RUN mkdir /home/myuser/apps/
COPY --chown=myuser:myuser kong-pongo /home/myuser/apps/kong-pongo
RUN apt update \
    && apt install -y make docker-compose curl
USER myuser

WORKDIR /home/myuser/apps/kong-pongo/pongo_wd

CMD ["../assets/docker/pongo-docker.sh"]

```

the error when i start without any more args:

```auto
kongpongo_1 | docker: Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?.
kongpongo_1 | See 'docker run --help'.
kongpongo_1 | /usr/bin/rm: cannot remove '/home/myuser/apps/kong-pongo/pongo_wd/.containerid': No such file or directory
kongpongo_-kongpongo_1 exited with code 125

```

Any idea/help?  
thanks

---

<div class="post-metadata">

### Author: ![Tieske](https://yyz2.discourse-cdn.com/flex036/user_avatar/discuss.konghq.com/tieske/32/54_2.png) [@Tieske](https://discuss.konghq.com/u/Tieske)
#### Post date: [March 17, 2022, 8:20am UTC](https://discuss.konghq.com/t/pongo-a-new-plugin-test-tool/4570/4 "2022-03-17T08:20:53Z")

</div>

have you tried the examples mentioned here: [GitHub - Kong/kong-pongo: Tooling to run plugin tests with Kong and Kong Enterprise](https://github.com/Kong/kong-pongo#running-pongo-in-docker)
