-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-ci.yml
More file actions
50 lines (47 loc) · 1.17 KB
/
docker-compose-ci.yml
File metadata and controls
50 lines (47 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
version: "3.7"
services:
biweb:
image: breedinginsight/biweb:ci
build:
context: ./bi-web
args:
HOST_USER_ID: ${USER_ID:-0}
HOST_GROUP_ID: ${GROUP_ID:-0}
ports:
- ${WEB_EXTERNAL_PORT:-8083}:8080
biapi:
depends_on:
- redis
- gigwa
image: breedinginsight/biapi:ci
build:
context: ./bi-api
dockerfile: ./Dockerfile-dev
args:
HOST_USER_ID: ${USER_ID:-0}
HOST_GROUP_ID: ${GROUP_ID:-0}
ports:
- ${API_EXTERNAL_PORT:-8090}:8081
environment:
- GITHUB_ACTOR=${GITHUB_ACTOR}
- GITHUB_TOKEN=${GITHUB_TOKEN}
- REDIS_URL=${REDIS_URL:-redis://redis:6379}
- REDIS_TIMEOUT=${REDIS_TIMEOUT:-30s}
- REDIS_SSL=${REDIS_SSL:-false}
- GIGWA_HOST=${GIGWA_HOST:-http://gigwa:8080}
mailhog:
image: mailhog/mailhog:latest
container_name: mailhog
restart: always
ports:
- ${MAILHOG_WEB_PORT:-8025}:8025
- ${MAILHOG_PORT:-1025}:1025
networks:
backend:
brapi-server:
image: breedinginsight/brapi-java-server:develop
ports:
- ${BRAPI_SERVER_PORT:-8080}:8080
bidb:
ports:
- ${DB_PORT:-5432}:5432