I created a Docker compose with postgres and maildev services. No problems with postgre, but the mail dev instantly exits(139). I checked some posts and that is basically a segfault problem, but i don’t know how to solve.
I’m running on W11, WSL latest 2.2.4.0
That is part of my docker compose in my spring project:
services:
mail-dev:
container_name: mail-dev-bsn
image: maildev/maildev
ports:
- 1080:1080
- 1025:1025
networks:
spring-demo:
driver: bridge
volumes:
postgres:
driver: local
I tried updating WSL, reinstalling Docker, seeing problems on my docker compose… but no improvements from here.
matnrocha is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1