🐳 server

☁️ Nextcloud server, a safe home for all your data

Docker Ready 1 Services Ports: 9091 36,408 stars
1. Pull Image docker pull docker.io/authelia/authelia
2. 1-Click Launch Command docker run -d -p 9091:9091 --name server docker.io/authelia/authelia:latest
3. Compose Deployment docker compose up -d
test/oidc/authelia/docker-compose.yml
Download .yml
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'