strona-czynna/docker-compose.yml
Kuba Orlik 88b466b2c4 Jenkins scripts
Summary:
Add some jenkins scripts so it's possible to deploy the app easily

Hotfix

Test Plan: tbd

Reviewers: #reviewers

Differential Revision: https://hub.sealcode.org/D1062
2021-05-27 22:29:06 +02:00

21 lines
500 B
YAML

version: "3.2"
services:
db:
image: mongo:4.4-bionic
ports:
- "127.0.0.1:2${SEALIOUS_PORT:-0723}:27017"
test:
image: sealious-test:latest
build:
context: .
dockerfile: test.dockerfile
volumes:
- ./:/opt/sealious/
ports:
- "127.0.0.1:${SEALIOUS_PORT:-8080}:${SEALIOUS_PORT:-8080}"
user: ${UID:-1000}:${GID:-1000}
mailcatcher:
image: schickling/mailcatcher:latest
ports:
- "127.0.0.1:1080:1080"
- "127.0.0.1:1025:1025"