Identity infrastructure with authentication and authorization
Identity infrastructure with authentication and authorization
- server: ghcr.io/zitadel/zitadel:latest
- db: Postgres database
curl -q -LSsf "https://raw.githubusercontent.com/composemgr/zitadel/main/docker-compose.yaml" -o compose.ymlgit clone "https://github.com/composemgr/zitadel" ~/.local/srv/docker/zitadel
cd ~/.local/srv/docker/zitadel
docker compose up -dcomposemgr install zitadelTZ=America/New_York
APP_ADMIN_USER=administrator
APP_TEMP_PASS=lkdfjdlkjaflkjadlgknvczmbnvnoi4eSee docker-compose.yaml for complete list of configurable options.
- Web Interface: http://172.17.0.1:59048
./rootfs/config/zitadel/machinekey- Data storage./rootfs/data/db/postgres- Data storage
- Change all default passwords before deploying to production
- Use strong secrets for all authentication tokens
- Configure HTTPS using a reverse proxy (nginx, traefik, caddy)
- Regularly update Docker images for security patches
- Backup your data regularly
docker compose logs -f server# Start services
docker compose up -d
# Stop services
docker compose down
# Update to latest images
docker compose pull && docker compose up -d
# View logs
docker compose logs -f
# Restart services
docker compose restart- Docker Engine 20.10+
- Docker Compose V2+