1
0
Fork 0

Can now test with docker

Esse commit está contido em:
John Shaver 2019-09-25 00:45:54 -07:00
commit e4e6eb0f4f
5 arquivos alterados com 26 adições e 3 exclusões

1
.gitignore externo
Ver arquivo

@ -1 +1,2 @@
node_modules
.env

Ver arquivo

@ -9,5 +9,6 @@ RUN haraka -i /app
RUN echo webmailer >> /app/config/plugins
RUN echo "listen=[::0]:8080" >> /app/config/http.ini
RUN echo "listen=[::0]:2525" >> /app/config/smtp.ini
COPY testing/testTemplate.js /app/plugins/webmailer/templates/testTemplate.js
COPY testing/testTemplate.js /app/templates
COPY . /app/plugins/webmailer
CMD haraka -c /app

13
docker-compose.yml Normal file
Ver arquivo

@ -0,0 +1,13 @@
version: '3'
services:
mail:
env_file:
- .env
build:
context: .
ports:
- '8080:8080'
- '2525:2525'
volumes:
- ./:/app/plugins/webmailer

Ver arquivo

@ -2,11 +2,18 @@ let fs = require('fs');
let bodyParser = require('body-parser');
let outbound;
let getTemplates = require('./templates');
let getTemplates;
let errorSender = require('./errorSender');
exports.register = function() {
outbound = this.haraka_require('./outbound');
try {
getTemplates = this.haraka_require('./templates');
if(!getTemplates || !Object.keys(getTemplates).length) {
throw Error ("No templates loaded!");
}
}catch(e) {
this.logerror("No email templates were loaded! Please add a templates directory with templates and try agin");
}
this.register_hook('init_http', 'initExpress');
}

1
templates/testTemplate.js Link simbólico
Ver arquivo

@ -0,0 +1 @@
../testing/testTemplate.js