2021-04-10 20:51:00 +00:00
|
|
|
---
|
2020-01-19 10:06:37 +00:00
|
|
|
version: '3'
|
2019-11-24 20:27:59 +00:00
|
|
|
services:
|
|
|
|
authelia-backend:
|
2020-01-21 22:07:11 +00:00
|
|
|
environment:
|
2023-05-07 06:41:41 +00:00
|
|
|
- 'AUTHELIA_JWT_SECRET_FILE=/tmp/authelia/StandaloneSuite/jwt'
|
|
|
|
- 'AUTHELIA_SESSION_SECRET_FILE=/tmp/authelia/StandaloneSuite/session'
|
2019-11-24 20:27:59 +00:00
|
|
|
volumes:
|
2020-06-17 06:25:35 +00:00
|
|
|
- './Standalone/configuration.yml:/config/configuration.yml:ro'
|
|
|
|
- './Standalone/users.yml:/config/users.yml'
|
2023-02-11 04:37:54 +00:00
|
|
|
- './common/pki:/pki:ro'
|
2020-02-04 21:18:02 +00:00
|
|
|
- '/tmp:/tmp'
|
2023-05-07 06:41:41 +00:00
|
|
|
user: '${USER_ID}:${GROUP_ID}'
|
2021-04-10 20:51:00 +00:00
|
|
|
...
|