maif/izanami

By maif

Updated about 1 month ago

izanami repository

Image
Integration & delivery
6

100K+

maif/izanami repository overview

Izanami

Izanami logo

Izanami is an open source, centralized feature flag solution.

To learn more about Izanami, check the documentation.

Running this image

Starting with v2, Izanami needs a postgres database to run.

Using docker
docker run --env IZANAMI_PG_URI=<PG_URI> -p 9000:9000 izanami

Where PG_URI is your postgres uri (for instance postgresql://postgres:[email protected]:5432/postgres).

Using docker-compose

Following docker-compose.yml file starts both izanami and postgres container:

# Use postgres/example user/password credentials
version: "3.1"

services:
  db:
    image: postgres
    restart: always
    environment:
      POSTGRES_USER: postgres
      POSTGRES_PASSWORD: postgres
    ports:
      - 5432:5432
  izanami:
    image: maif/izanami:2.4.0
    environment:
      IZANAMI_PG_URI: postgresql://postgres:[email protected]:5432/postgres
    ports:
      - 9000:9000

Logging in

Once Izanami is running, you can log in with RESERVED_ADMIN_USER username and generated password that is displayed in logs at first start.

You may also change this default user (and associated password) through configuration.

Tag summary

Content type

Image

Digest

sha256:50f647526

Size

448.4 MB

Last updated

about 1 month ago

docker pull maif/izanami:2.26.0