Authentik - Open Source Identity Provider
Everything you need to deploy Authentik with BlastDock
One command deployment
Production-ready security
Customizable settings
Ready to scale up
blastdock init
Initialize new project
blastdock deploy
Deploy the application
blastdock status
Check deployment status
blastdock logs
View application logs
Get Authentik up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Authentik with:
blastdock init authentik
Interactive mode:
blastdock init authentik -i
blastdock templates
List available templates
blastdock status project
Check deployment status
blastdock logs project
View application logs
blastdock stop project
Stop deployment
Customize your Authentik installation with these configuration options.
Web interface port
Database password
Secret key
Complete Docker Compose configuration for Authentik deployment.
version: '3.8'
services:
postgres:
image: postgres:13
container_name: {{ project_name }}_postgres
restart: unless-stopped
environment:
0: POSTGRES_PASSWORD={{ db_password }}
1: POSTGRES_USER=authentik
2: POSTGRES_DB=authentik
volumes:
- /var/lib/postgresql/data
networks:
- authentik_network
redis:
image: redis:6
container_name: {{ project_name }}_redis
restart: unless-stopped
networks:
- authentik_network
authentik-server:
image: ghcr.io/goauthentik/server:latest
container_name: {{ project_name }}_authentik_server
restart: unless-stopped
depends_on:
- postgres
- redis
ports:
- "9000"
environment:
0: AUTHENTIK_REDIS__HOST=redis
1: AUTHENTIK_POSTGRESQL__HOST=postgres
2: AUTHENTIK_POSTGRESQL__USER=authentik
3: AUTHENTIK_POSTGRESQL__NAME=authentik
4: AUTHENTIK_POSTGRESQL__PASSWORD={{ db_password }}
5: AUTHENTIK_SECRET_KEY={{ secret_key }}
volumes:
- /media
- /templates
networks:
- authentik_network
authentik-worker:
image: ghcr.io/goauthentik/server:latest
container_name: {{ project_name }}_authentik_worker
restart: unless-stopped
depends_on:
- postgres
- redis
environment:
0: AUTHENTIK_REDIS__HOST=redis
1: AUTHENTIK_POSTGRESQL__HOST=postgres
2: AUTHENTIK_POSTGRESQL__USER=authentik
3: AUTHENTIK_POSTGRESQL__NAME=authentik
4: AUTHENTIK_POSTGRESQL__PASSWORD={{ db_password }}
5: AUTHENTIK_SECRET_KEY={{ secret_key }}
volumes:
- /media
- /templates
networks:
- authentik_network
volumes:
postgres_data:
driver: local
authentik_media:
driver: local
authentik_custom_templates:
driver: local
networks:
authentik_network:
driver: bridge