anzar-cli 0.9.10

Anzar is a lightweight authentication and authorization framework that runs as a separate microservice
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
db:
    image: postgres:16-alpine
    restart: always
    ports:
      - "5432:5432"
    environment:
      POSTGRES_USER: ${POSTGRES_USER}
      POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
      POSTGRES_DB: ${POSTGRES_DB}
    healthcheck:
      test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER} -d ${POSTGRES_DB}"]
      interval: 10s
      timeout: 5s
      retries: 5
    volumes:
      - {{NAME}}_volume:/var/lib/postgresql/data