updated docker-compose, added mailhog with profile "smtp-debug"
This commit is contained in:
parent
7d97cd4b36
commit
8563391584
|
@ -43,6 +43,15 @@ services:
|
||||||
networks:
|
networks:
|
||||||
- wave
|
- wave
|
||||||
|
|
||||||
|
mailhog:
|
||||||
|
image: mailhog/mailhog:latest
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- 8080:8025
|
||||||
|
profiles: ["smtp-debug"]
|
||||||
|
networks:
|
||||||
|
- wave
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
wave-files:
|
wave-files:
|
||||||
wave-config:
|
wave-config:
|
||||||
|
|
|
@ -4,7 +4,19 @@
|
||||||
"commandName": "DockerCompose",
|
"commandName": "DockerCompose",
|
||||||
"commandVersion": "1.0",
|
"commandVersion": "1.0",
|
||||||
"serviceActions": {
|
"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