Advertisement
Guest User

Untitled

a guest
May 26th, 2019
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. docker run -d --name kong \
  2. --network=kong-net \
  3. -e "KONG_DATABASE=postgres" \
  4. -e "KONG_PG_HOST=kong-database" \
  5. -e "KONG_CASSANDRA_CONTACT_POINTS=kong-database" \
  6. -e "KONG_PROXY_ACCESS_LOG=/dev/stdout" \
  7. -e "KONG_ADMIN_ACCESS_LOG=/dev/stdout" \
  8. -e "KONG_PROXY_ERROR_LOG=/dev/stderr" \
  9. -e "KONG_ADMIN_ERROR_LOG=/dev/stderr" \
  10. -e "KONG_ADMIN_LISTEN=0.0.0.0:8001, 0.0.0.0:8444 ssl" \
  11. -e "KONG_TRUSTED_IPS=0.0.0.0/0,::/0" \
  12. -p 80:8000 \
  13. -p 8443:8443 \
  14. -p 8001:8001 \
  15. -p 8444:8444 \
  16. kong:latest
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement