forked from tarsil/django-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
61 lines (57 loc) · 1.17 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
version: '2'
services:
db:
restart: always
image: postgres:9.6.0
expose:
- "5432"
volumes:
- "{{ project_name }}_db_data:/var/lib/postgresql/data"
ports:
- "5432:5432"
redis:
restart: always
image: redis:latest
expose:
- "6379"
rabbit:
restart: always
image: rabbitmq:3.6.12
expose:
- "5672"
environment:
- RABBITMQ_DEFAULT_USER=rabbit_user
- RABBITMQ_DEFAULT_PASS=rabbit_user_default_pass
{{ project_name }}:
restart: always
image: oratio/libra:latest
depends_on:
- redis
- rabbit
environment:
DJANGOENV: development
ENVIRONMENT: development
PYTHON: python
PROJECT_NAME: {{ project_name }}
TERM: xterm
ROLE: development
links:
- db:postgres
- redis
- rabbit
ports:
- "80:80"
- "443:443"
- "8000:8000"
expose:
- "80"
- "443"
- "8000"
volumes:
- .:/var/www
- ~/.aws/config:/root/.aws/config
working_dir: /var/www
command: bash -lc "pip install invoke jinja2 && invoke -r roles $${ROLE}"
volumes:
{{ project_name }}_db_data:
external: true