Skip to main content

Installation

The service can be installed through the Portainer web interface. 

Learn about creating a new stack.

Docker Compose

Use the following code to install the service:

---
services:
  authelia:
    container_name: 'authelia'
    image: 'authelia/authelia'
    restart: 'unless-stopped'
    ports:
      - "9091:9091"
    volumes:
      # Persistent Data
      - '/srv/authelia/data:/config'
      - '/srv/authelia/secrets:/secrets'
    environment:
      - TZ='Americas/Vancouver'