Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit d68e481

Browse files
committed
add smtp relay to enable sending mail from biocacheservice
1 parent 8474b08 commit d68e481

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

env/envpostfix.template

Whitespace-only changes.

postfix-docker-compose.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
version: '3.7'
2+
3+
networks:
4+
basnet:
5+
external: true
6+
7+
services:
8+
9+
postfix:
10+
image: juanluisbaptiste/postfix:latest
11+
expose:
12+
- "25"
13+
env_file:
14+
- env/.envpostfix
15+
volumes:
16+
- "/etc/localtime:/etc/localtime:ro"
17+
networks:
18+
- basnet
19+
deploy:
20+
placement:
21+
constraints:
22+
- node.hostname == live-manager-1
23+

0 commit comments

Comments
 (0)