* handle FlowNonApplicableException everywhere Signed-off-by: Jens Langhammer <jens@goauthentik.io> * make flow planner check authentication when no pending user is in planning context Signed-off-by: Jens Langhammer <jens@goauthentik.io> * add mailhog to e2e test services, remove local docker requirement Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: Jens Langhammer <jens@goauthentik.io>
		
			
				
	
	
		
			19 lines
		
	
	
		
			378 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			378 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
version: '3.7'
 | 
						|
 | 
						|
services:
 | 
						|
  chrome:
 | 
						|
    image: selenium/standalone-chrome:110.0
 | 
						|
    volumes:
 | 
						|
      - /dev/shm:/dev/shm
 | 
						|
    network_mode: host
 | 
						|
    restart: always
 | 
						|
  mailhog:
 | 
						|
    image: mailhog/mailhog:v1.0.1
 | 
						|
    ports:
 | 
						|
      - 1025:1025
 | 
						|
      - 8025:8025
 | 
						|
    healthcheck:
 | 
						|
      test: ["CMD", "wget", "--spider", "http://localhost:8025"]
 | 
						|
      interval: 5s
 | 
						|
      start_period: 1s
 |