updated docker-compose, added mailhog with profile "smtp-debug"
This commit is contained in:
parent
7d97cd4b36
commit
8563391584
|
@ -43,6 +43,15 @@ services:
|
|||
networks:
|
||||
- wave
|
||||
|
||||
mailhog:
|
||||
image: mailhog/mailhog:latest
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 8080:8025
|
||||
profiles: ["smtp-debug"]
|
||||
networks:
|
||||
- wave
|
||||
|
||||
volumes:
|
||||
wave-files:
|
||||
wave-config:
|
||||
|
|
|
@ -4,7 +4,19 @@
|
|||
"commandName": "DockerCompose",
|
||||
"commandVersion": "1.0",
|
||||
"serviceActions": {
|
||||
"web": "StartDebugging"
|
||||
"web": "StartDebugging",
|
||||
"database": "StartWithoutDebugging",
|
||||
"mailhog": "DoNotStart",
|
||||
"redis": "StartWithoutDebugging"
|
||||
}
|
||||
},
|
||||
"SMTP Debugging": {
|
||||
"commandName": "DockerCompose",
|
||||
"commandVersion": "1.0",
|
||||
"composeProfile": {
|
||||
"includes": [
|
||||
"smtp-debug"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue