mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
e843a52a04
* [Docker] Create Lite docker-compose.yml example * [Docker] Update README.md with 3 compose bundles {Local,Lite,Full} * [DOCS] Update Traefik2 proxy example * [Docker] Create Local docker-compose.yml example * [MISC] Update examples to utilise Traefik 2.2 This change enables global http -> https redirection. * [Docker] Update Local compose to utilise loopback address * [Docker] Drop compose version to 3.3 to cater for more distros * [DOCS] Adjust Getting Started * [Docker] Tweak Local bundle setup for OSX * [Docker] Optimise setup.sh for Local bundle * [Docker] Fix read-only mounting of user database * [DOCS] Implement feedback for compose bundles * [DOCS] Provide feedback on self-signed certificates * [DOCS] Implement additional feedback for compose bundles Co-authored-by: Clément Michaud <clement.michaud34@gmail.com>
55 lines
1.5 KiB
Markdown
55 lines
1.5 KiB
Markdown
---
|
|
layout: default
|
|
title: Contributing
|
|
nav_order: 7
|
|
has_children: true
|
|
---
|
|
|
|
# Contributing
|
|
|
|
## Development workflow
|
|
|
|
**Authelia** and its development workflow can be tested with Docker and docker-compose on Linux.
|
|
|
|
In order to deploy the current version of Authelia locally, run the following command and
|
|
follow the instructions of bootstrap.sh:
|
|
|
|
$ source bootstrap.sh
|
|
|
|
Then, start the *Standalone* [suite].
|
|
|
|
$ authelia-scripts suites setup Standalone
|
|
|
|
A [suite] is kind of a virtual environment for running Authelia in a complete ecosystem.
|
|
If you want more details please read the related [documentation](./contributing/suites.md).
|
|
|
|
## FAQ
|
|
|
|
### What version of Docker and docker-compose should I use?
|
|
|
|
Here are the versions used for testing in Buildkite:
|
|
|
|
$ docker --version
|
|
Docker version 19.03.5, build 633a0ea838
|
|
|
|
$ docker-compose --version
|
|
docker-compose version 1.24.1, build unknown
|
|
|
|
### How can I serve my application under example.com?
|
|
|
|
Don't worry, you don't need to own the domain *example.com* to test Authelia.
|
|
Copy the following lines in your /etc/hosts.
|
|
|
|
192.168.240.100 home.example.com
|
|
192.168.240.100 login.example.com
|
|
192.168.240.100 singlefactor.example.com
|
|
192.168.240.100 public.example.com
|
|
192.168.240.100 secure.example.com
|
|
192.168.240.100 mail.example.com
|
|
192.168.240.100 mx1.mail.example.com
|
|
|
|
`192.168.240.100` is the IP attributed by Docker to the reverse proxy. Once done
|
|
you can access the listed sub-domains from your browser and they will target
|
|
the reverse proxy.
|
|
|
|
[suite]: ./contributing/suites.md |