postal/README.md

17 lines
812 B
Markdown
Raw Normal View History

2017-04-27 11:23:57 +02:00
## Docker container for [atech/postal](https://github.com/atech/postal)
### Instructions
2017-04-27 21:38:02 +02:00
Change configuration in docker-compose.yml to update passwords for MySQL/RabbitMQ.
Both passwords in the `postal` service, `mysql` service and `rabbitmq` service have to be changed.
2017-04-27 11:23:57 +02:00
2017-04-27 23:53:43 +02:00
Then, start postal by running
2017-04-27 11:23:57 +02:00
```
docker-compose up -d
```
2017-04-27 21:33:05 +02:00
### Configuration
2017-04-27 21:38:02 +02:00
Configuration is located at data/postal after the first start. Note that non-config files (i.e. files in https://github.com/atech/postal/tree/master/config) will be overwritten each time the container starts up.
2017-04-27 21:38:31 +02:00
2017-04-27 21:38:02 +02:00
Be sure to do some port mappings to allow your SMTP server and HTTP(s) server to be accessed. I suggest simply port mapping the SMTP server and using [jwilder/nginx-proxy](https://github.com/jwilder/nginx-proxy) to proxy the HTTP server.
2017-04-27 11:23:57 +02:00
Still WIP