mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
e8c3205e0a
Use the polyfill version of u2f API provided by Google. https://github.com/mastahyeti/u2f-api This polyfill is at least compatible with Chrome and Firefox after enabling the U2F support. [HOWTO] Enable U2F in Firefox >= 57: Navigate to 'about:config' and search for 'u2f' option. Double-click on the line to toggle the option.
30 lines
779 B
YAML
30 lines
779 B
YAML
version: '2'
|
|
services:
|
|
authelia-dev:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.dev
|
|
restart: always
|
|
volumes:
|
|
- ./server:/usr/src/server
|
|
- ./dist/server/src/public_html:/usr/src/server/src/public_html
|
|
- ./client:/usr/src/client
|
|
- ./shared:/usr/src/shared
|
|
- ./config.minimal.yml:/etc/authelia/config.yml:ro
|
|
- /tmp/authelia:/tmp/authelia
|
|
- ./users_database.yml:/etc/authelia/users_database.yml
|
|
environment:
|
|
- NODE_TLS_REJECT_UNAUTHORIZED=0
|
|
depends_on:
|
|
- redis
|
|
networks:
|
|
example-network:
|
|
aliases:
|
|
- authelia
|
|
command:
|
|
- "./node_modules/.bin/ts-node"
|
|
- "-P"
|
|
- "server/tsconfig.json"
|
|
- "server/src/index.ts"
|
|
- "/etc/authelia/config.yml"
|