first commit
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-05-15 21:50:36 +02:00
parent 0b3eb8db5a
commit 0b463e2c76
3 changed files with 3 additions and 2 deletions

View File

@@ -0,0 +1,26 @@
Portainer Stack:
```yaml
---
version: "3.8"
services:
authelia:
image: authelia/authelia:${tag-latest}
container_name: authelia
network_mode: ${NET-bridge}
environment:
- TZ=${TZ-Europe/Amsterdam}
volumes:
- /docker/nginx/authelia:/config
restart: ${RST-unless-stopped}
labels:
- com.centurylinklabs.watchtower.enable=${AutoUpdate-true}
```
Environments:
```
tag=latest
NET=bridge
TZ=Europe/Lisbon
RST=unless-stopped
AutoUpdate=true
```