Add service and route
docker-compose up -d
curl -X POST \
http://localhost:8001/services \
-H 'Content-Type: application/json' \
-d '{
"name": "konga",
"host": "konga",
"port": 1337,
"path": "/"
}'
curl -X POST \
http://localhost:8001/services/konga/routes \
-H 'Content-Type: application/json' \
-d '{
"paths": ["/konga"],
"name": "konga_route",
"methods": ["GET","POST"]
}'
docker-compose down