Last active
February 17, 2017 09:45
-
-
Save mrserverless/7c0c30a98ad859edeafbb27048e785e1 to your computer and use it in GitHub Desktop.
Docker compose for Kong with Cassandra
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cassandra: | |
ports: | |
- 9042:9042 | |
image: cassandra:2.2 | |
kong: | |
ports: | |
- 8000:8000/tcp | |
- 8443:8443/tcp | |
- 8001:8001/tcp | |
- 7946:7946/tcp | |
- 7946:7946/udp | |
image: littlebaydigital/kong:0.8.1 | |
links: | |
- cassandra:kong-database |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment