Hope to add docker configuration #85
Closed
onepiecewyz
started this conversation in
Ideas
Replies: 1 comment 1 reply
-
Hello @onepiecewyz, do you refer to an example Docker Compose file to start a Kong Gateway OSS with Kong Manager OSS? The following YAML would help you quickly set up a Kong Gateway OSS instance with Kong Manager OSS available at the version: "3.9"
services:
kong:
image: kong/kong:3.4
ports:
- "8000-8002:8000-8002"
environment:
KONG_DATABASE: "off"
KONG_DECLARATIVE_CONFIG_STRING: '{"_format_version":"1.1", "services":[{"host":"mockbin.com","port":443,"protocol":"https", "routes":[{"paths":["/"]}]}],"plugins":[{"name":"rate-limiting", "config":{"policy":"local","limit_by":"ip","minute":3}}]}'
KONG_ADMIN_LISTEN: 0.0.0.0:8001
restart: always
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The UI is really awesome, and I hope Docker configuration can be provided as soon as possible.
Beta Was this translation helpful? Give feedback.
All reactions