From ac5d0aa116b47ac25e264471089f3d7c2d1bf034 Mon Sep 17 00:00:00 2001 From: Zairig Imad Date: Wed, 22 Jan 2025 17:58:15 +0100 Subject: [PATCH] feat(service): Add new service Flipt (#4875) --- public/svgs/flipt.svg | 21 +++++++++++++++++++++ templates/compose/flipt.yaml | 23 +++++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 public/svgs/flipt.svg create mode 100644 templates/compose/flipt.yaml diff --git a/public/svgs/flipt.svg b/public/svgs/flipt.svg new file mode 100644 index 000000000..8c8164f8f --- /dev/null +++ b/public/svgs/flipt.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/templates/compose/flipt.yaml b/templates/compose/flipt.yaml new file mode 100644 index 000000000..74a72d9f6 --- /dev/null +++ b/templates/compose/flipt.yaml @@ -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 \ No newline at end of file