docker pull docker.io/authelia/authelia
docker run -d -p 9091:9091 --name server docker.io/authelia/authelia:latest
docker compose up -d
services:
authelia:
container_name: 'authelia'
image: 'docker.io/authelia/authelia:latest'
restart: 'unless-stopped'
environment:
- PUID=1000
- PGID=1000
ports:
- 9091:9091
volumes:
- './config:/config'
- './secrets:/secrets'