23 lines
458 B
YAML
23 lines
458 B
YAML
services:
|
|
website:
|
|
build: .
|
|
ports:
|
|
- 1313:80
|
|
env_file: .env
|
|
facteur:
|
|
image: php:8.5-apache
|
|
ports:
|
|
- 1314:80
|
|
volumes:
|
|
- ./contact-backend/:/var/www/html/
|
|
mailpit:
|
|
image: axllent/mailpit
|
|
container_name: mailpit
|
|
restart: unless-stopped
|
|
ports:
|
|
- 8025:8025
|
|
- 1025:1025
|
|
environment:
|
|
MP_MAX_MESSAGES: 5000
|
|
MP_SMTP_AUTH_ACCEPT_ANY: 1
|
|
MP_SMTP_AUTH_ALLOW_INSECURE: 1 |