feat(service): Add new service Flipt (#4875)

This commit is contained in:
Zairig Imad
2025-01-22 17:58:15 +01:00
committed by GitHub
parent 3d68996900
commit ac5d0aa116
2 changed files with 44 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
# documentation: https://docs.flipt.io/cloud/overview
# slogan: Flipt is a fully managed feature flag solution that enables you to keep your feature flags and remote config next to your code in Git.
# tags: feature flags,devops, CI, CD
# logo: svgs/flipt.svg
# port: 8080
services:
flipt:
image: 'docker.flipt.io/flipt/flipt:latest'
volumes:
- 'flipt-data:/var/opt/flipt'
environment:
- SERVICE_FQDN_FLIPT_8080
healthcheck:
test:
- CMD
- wget
- '--spider'
- '--quiet'
- 'http://127.0.0.1:8080'
interval: 2s
timeout: 10s
retries: 15