17 lines
382 B
YAML
17 lines
382 B
YAML
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
|