This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/tests/e2e/docker-compose.yml

19 lines
378 B
YAML
Raw Normal View History

2020-05-28 22:45:56 +00:00
version: '3.7'
services:
2020-06-08 09:21:14 +00:00
chrome:
image: selenium/standalone-chrome:110.0
2020-06-08 09:21:14 +00:00
volumes:
- /dev/shm:/dev/shm
network_mode: host
2020-09-02 22:04:12 +00:00
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