https://github.com/wallarm/kong-docker-aio
kong-docker-aio
https://github.com/wallarm/kong-docker-aio
Last synced: 7 months ago
JSON representation
kong-docker-aio
- Host: GitHub
- URL: https://github.com/wallarm/kong-docker-aio
- Owner: wallarm
- Created: 2023-10-24T04:22:53.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-24T04:24:15.000Z (about 2 years ago)
- Last Synced: 2024-03-26T19:07:44.988Z (almost 2 years ago)
- Language: Lua
- Size: 587 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# kong31-wallarm
Docker image with Kong 3.1.1-ubuntu and Wallarm 4.6 - https://hub.docker.com/r/ebberst/kong31-wallarm
Example of execution:
```
docker run -it --rm --name kong \
-e 'KONG_DATABASE=off' \
-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_ADMIN_LISTEN=0.0.0.0:8001, 0.0.0.0:8444 ssl' \
-e 'KONG_DECLARATIVE_CONFIG_STRING={"_format_version":"1.1", "services":[{"host":"mockbin.com","port":443,"protocol":"https", "routes":[{"paths":["/"]}]}]}' \
-e 'WALLARM_API_HOST=api.wallarm.com' \
-e 'WALLARM_API_TOKEN=' \
-e 'WALLARM_LABELS=group=' \
-e 'TARANTOOL_MEMORY_GB=1' \
-e 'WALLARM_MODE=block' \
-p 8000:8000 \
-p 8443:8443 \
-p 8001:8001 \
-p 8444:8444 \
ebberst/kong31-wallarm:latest
```