Authelia

Authelia - Open-source authentication and authorization server

9091
Default Port
3
Services
21.5/20
Complexity
Medium
Memory Usage
Configuration

Installation Command

blastdock init authelia

Template Overview

Everything you need to deploy Authelia with BlastDock

Quick Deploy

One command deployment

Secure

Production-ready security

Configurable

Customizable settings

Scalable

Ready to scale up

What's Included

Authelia
authelia/authelia:latest
Redis
redis:6
Mysql
mysql:8
Categories
Database
Security Features
Password Protection
Resource Requirements
CPU: Medium, Memory: Medium , Storage Required

Quick Commands

blastdock init Initialize new project
blastdock deploy Deploy the application
blastdock status Check deployment status
blastdock logs View application logs

Quick Installation

Get Authelia up and running in minutes with our one-click installation.

BlastDock Installation

First, install BlastDock using pip (recommended):

Terminal
pip install blastdock

Then deploy Authelia with:

Terminal
blastdock init authelia

Interactive mode:

Terminal
blastdock init authelia -i

What's Included

Authelia
Container service
Redis
Container service
Mysql
Container service

BlastDock Commands

blastdock templates List available templates
blastdock status project Check deployment status
blastdock logs project View application logs
blastdock stop project Stop deployment

Configuration Options

Customize your Authelia installation with these configuration options.

5
Required Fields
0
Optional Fields
3
Auto-Generated Passwords

Port

Web interface port

port
Default: 9091
Required: Yes

Mysql Password

MySQL password

password
Default: ••••••••••••
Required: Yes
Security: Auto-generated

Jwt Secret

JWT secret

password
Default: ••••••••••••
Required: Yes
Security: Auto-generated

Session Secret

Session secret

password
Default: ••••••••••••
Required: Yes
Security: Auto-generated

Domain

Domain name

domain
Default: example.com
Required: Yes

Docker Compose

Complete Docker Compose configuration for Authelia deployment.

3
Services
2
Volumes
1
Networks
1
Exposed Ports
docker-compose.yml
version: '3.8'

services:
  mysql:
    image: mysql:8
    container_name: {{ project_name }}_mysql
    restart: unless-stopped
    environment:
      0: MYSQL_ROOT_PASSWORD={{ mysql_password }}
      1: MYSQL_DATABASE=authelia
      2: MYSQL_USER=authelia
      3: MYSQL_PASSWORD={{ mysql_password }}
    volumes:
      - /var/lib/mysql
    networks:
      - authelia_network

  redis:
    image: redis:6
    container_name: {{ project_name }}_redis
    restart: unless-stopped
    networks:
      - authelia_network

  authelia:
    image: authelia/authelia:latest
    container_name: {{ project_name }}_authelia
    restart: unless-stopped
    depends_on:
      - mysql
      - redis
    ports:
      - "9091"
    environment:
      0: TZ=Europe/London
      1: AUTHELIA_JWT_SECRET={{ jwt_secret }}
      2: AUTHELIA_SESSION_SECRET={{ session_secret }}
      3: AUTHELIA_STORAGE_MYSQL_HOST=mysql
      4: AUTHELIA_STORAGE_MYSQL_PORT=3306
      5: AUTHELIA_STORAGE_MYSQL_DATABASE=authelia
      6: AUTHELIA_STORAGE_MYSQL_USERNAME=authelia
      7: AUTHELIA_STORAGE_MYSQL_PASSWORD={{ mysql_password }}
      8: AUTHELIA_SESSION_REDIS_HOST=redis
      9: AUTHELIA_SESSION_REDIS_PORT=6379
      - AUTHELIA_DEFAULT_REDIRECTION_URL=https: //{{ domain }}
    volumes:
      - /config
    networks:
      - authelia_network

volumes:
  mysql_data:
    driver: local

  authelia_config:
    driver: local

networks:
  authelia_network:
    driver: bridge