mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
74a7e96409
* ci: add integration containers for duo and haproxy This change utilises specific integration containers for the DuoPush and HAProxy suites. In the case of DuoPush suite specifically in dev mode the container will be built on suite startup. * ci: factorize pre-command hook and unset async on trigger steps
15 lines
487 B
YAML
15 lines
487 B
YAML
---
|
|
version: '3'
|
|
services:
|
|
haproxy:
|
|
image: authelia/integration-haproxy
|
|
volumes:
|
|
- ./example/compose/haproxy/haproxy.cfg:/usr/local/etc/haproxy/haproxy.cfg:ro
|
|
- ./example/compose/haproxy/http.lua:/usr/local/etc/haproxy/haproxy-lua-http/http.lua
|
|
- ./example/compose/haproxy/auth-request.lua:/usr/local/etc/haproxy/auth-request.lua
|
|
networks:
|
|
authelianet:
|
|
# Set the IP to be able to query on port 8080
|
|
ipv4_address: 192.168.240.100
|
|
...
|