mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
67f84b97c8
* Fix issue in unit test of IdentityCheckMiddleware. * Enable authentication to Mongo server. * Enable authentication to Redis.
13 lines
256 B
YAML
13 lines
256 B
YAML
version: '2'
|
|
services:
|
|
mongo:
|
|
image: mongo:3.4
|
|
command: mongod --auth
|
|
environment:
|
|
- MONGO_INITDB_ROOT_USERNAME=authelia
|
|
- MONGO_INITDB_ROOT_PASSWORD=authelia
|
|
ports:
|
|
- "27017:27017"
|
|
networks:
|
|
- example-network
|