-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.yml
42 lines (39 loc) · 1.07 KB
/
docker-compose.yml
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
# Inspired by https://docs.docker.com/compose/django/
version: '3.4'
services:
db:
image: postgres
# environment:
# - POSTGRES_USER=${PG_USER:brc}
# - POSTGRES_PASSWORD=${PG_PASSWORD:brc}
redis:
image: redis
web:
image: vngr/gemma-brc
environment:
- DJANGO_SETTINGS_MODULE=brc.conf.docker
- SECRET_KEY=${SECRET_KEY}
- REDIS_CACHE=redis:6379/0
ports:
- 8000:8000
depends_on:
- db
- redis
# See: src/brc/conf/docker.py
# Optional containers below:
# elasticsearch:
# # NOTE: No persistance storage configured.
# # See: https://www.elastic.co/guide/en/elasticsearch/reference/current/docker.html
# image: docker.elastic.co/elasticsearch/elasticsearch:6.2.4
# container_name: elasticsearch
# environment:
# - discovery.type=single-node
# - cluster.routing.allocation.disk.threshold_enabled=false
# ports:
# - 9200:9200
# redis:
# # NOTE: No persistance storage configured.
# # See: https://hub.docker.com/_/redis/
# image: redis
# ports:
# - 6379:6379