updated docker-compose, added mailhog with profile "smtp-debug"

This commit is contained in:
Mia Rose Winter 2024-04-08 11:22:49 +02:00
parent 7d97cd4b36
commit 8563391584
Signed by: miawinter
GPG key ID: 4B6F6A83178F595E
2 changed files with 22 additions and 1 deletions

View file

@ -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:

View file

@ -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"
]
} }
} }
} }