strona-czynna/docker-compose.yml
Kuba Orlik 3dd696acf9 Deploy Mailcatcher to jenkins, as well
Summary: So it's possible to test emails without reading logs

Test Plan: tbd

Reviewers: #reviewers

Subscribers: jenkins-user

Differential Revision: https://hub.sealcode.org/D1099
2021-06-16 19:41:44 +02:00

21 lines
483 B
YAML

version: "3.2"
services:
db:
image: mongo:4.4-bionic
ports:
- "127.0.0.1:${PORT:-2072}4:27017"
test:
image: sealious-test:latest
build:
context: .
dockerfile: test.Dockerfile
volumes:
- ./:/opt/sealious/
- ~/.npm_cacache:/opt/sealious/.npm_cacache
user: ${UID:-1000}:${GID:-1000}
mailcatcher:
image: schickling/mailcatcher:latest
ports:
- "127.0.0.1:${PORT:-108}1:1080"
- "127.0.0.1:${PORT:-102}5:1025"