featbit api server
100K+
FeatBit is an open-source feature flag management platform.
This is the docker image of FeatBit's backend api server which intended for use by featbit-ui.
You can find its source code here: https://github.com/featbit/featbit/tree/main/modules/back-end.
Type the following command to run the api server:
docker run -d -p 5000:5000 --name featbit-api featbitdocker/featbit-api-server:latest
After our api server started, you can go http://localhost:5000/swagger to check a list of apis provided by our server.
you have a few options to check the server's health status
Dump Health Check don't check whether the application can connect to its dependencies, and often only exercise the most basic requirements of the application itself i.e. can it respond to an HTTP request. To do that, you can
docker inspect --format '{{json .State.Health}}' featbit-api | jq to check if container's STATUS is healthycurl http://localhost:5000/health/liveness manually to check the application's livenessContent type
Image
Digest
sha256:e55570602…
Size
125.1 MB
Last updated
about 4 hours ago
docker pull featbit/featbit-api-server