Izanami is an open source, centralized feature flag solution.
To learn more about Izanami, check the documentation.
Starting with v2, Izanami needs a postgres database to run.
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).
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
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.
Content type
Image
Digest
sha256:50f647526…
Size
448.4 MB
Last updated
about 1 month ago
docker pull maif/izanami:2.26.0