* maybe fix e2e Signed-off-by: Jens Langhammer <jens@goauthentik.io> * actually fix e2e Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: Jens Langhammer <jens@goauthentik.io>
		
			
				
	
	
		
			19 lines
		
	
	
		
			398 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			398 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
version: '3.7'
 | 
						|
 | 
						|
services:
 | 
						|
  chrome:
 | 
						|
    image: docker.io/selenium/standalone-chrome:122.0
 | 
						|
    volumes:
 | 
						|
      - /dev/shm:/dev/shm
 | 
						|
    network_mode: host
 | 
						|
    restart: always
 | 
						|
  mailpit:
 | 
						|
    image: docker.io/axllent/mailpit:v1.6.5
 | 
						|
    ports:
 | 
						|
      - 1025:1025
 | 
						|
      - 8025:8025
 | 
						|
    healthcheck:
 | 
						|
      test: ["CMD", "wget", "--spider", "http://localhost:8025"]
 | 
						|
      interval: 5s
 | 
						|
      start_period: 1s
 |