25 lines
528 B
YAML
25 lines
528 B
YAML
services:
|
|
website:
|
|
build:
|
|
context: .
|
|
args:
|
|
- CONTACT_FORM_URL=http://localhost:1314/contact.php
|
|
ports:
|
|
- 1313:80
|
|
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 |