Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions docker-compose-qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,8 @@ services:
biapi:
image: breedinginsight/biapi:develop
bidb:
ports:
- 5432:5432
ports:
- "5432:5432"
redis:
ports:
- "6379:6379"
11 changes: 11 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
biweb:
image: breedinginsight/biweb:latest
container_name: biweb
restart: always
depends_on:
- biapi
environment:
Expand All @@ -19,6 +20,7 @@ services:
depends_on:
- bidb
- brapi-server
- redis
environment:
- API_INTERNAL_PORT=${API_INTERNAL_PORT:-8081}
- DB_SERVER=${DB_SERVER:-dbserver:5432}
Expand All @@ -40,6 +42,9 @@ services:
- EMAIL_RELAY_HOST=${EMAIL_RELAY_HOST}
- EMAIL_RELAY_PORT=${EMAIL_RELAY_PORT}
- EMAIL_FROM=${EMAIL_FROM}
- REDIS_URL=${REDIS_URL:-redis://redis:6379}
- REDIS_TIMEOUT=${REDIS_TIMEOUT:-30s}
- REDIS_SSL=${REDIS_SSL:-false}
networks:
backend:
protected:
Expand Down Expand Up @@ -74,6 +79,12 @@ services:
- 1025:1025
networks:
backend:
redis:
image: redis
container_name: redis
restart: always
networks:
backend:
bidb:
image: postgres:11.4
environment:
Expand Down