2020-05-28 23:45:56 +01:00
|
|
|
version: '3.7'
|
|
|
|
|
|
|
|
services:
|
2020-06-08 10:21:14 +01:00
|
|
|
chrome:
|
2023-02-28 14:18:29 +00:00
|
|
|
image: selenium/standalone-chrome:110.0
|
2020-06-08 10:21:14 +01:00
|
|
|
volumes:
|
|
|
|
- /dev/shm:/dev/shm
|
2020-06-19 17:19:20 +01:00
|
|
|
network_mode: host
|
2020-09-02 23:04:12 +01:00
|
|
|
restart: always
|
2023-02-28 14:18:29 +00:00
|
|
|
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
|