-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
96 lines (94 loc) · 1.73 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
version: '3'
services:
db:
image: postgres
environment:
- POSTGRES_PASSWORD=postgres
volumes:
- pgdata:/var/lib/postgresql/data
django:
build:
context: .
dockerfile: Dockerfile.django
command: ./bin/wait-for-postgres -- python manage.py runserver 0.0.0.0:8000
env_file:
- django.env
volumes:
- .:/app
ports:
- "8000:8000"
depends_on:
- db
gulp:
build:
context: .
dockerfile: Dockerfile.gulp
command: gulp
environment:
- NODE_ENV=development
volumes:
- .:/app
- node_modules:/app/node_modules
ports:
- "3000:3000"
depends_on:
- django
# PROD
redis:
restart: always
image: redis:latest
volumes:
- ./db/redis:/data
container_name: pycon-redis
web:
restart: always
build:
context: .
dockerfile: Dockerfile.pycon
image: pycon-web
env_file:
- django.env
volumes:
- .:/srv/funny/pycon
container_name: pycon-web
working_dir: "/srv/funny/pycon"
command: scripts/docker_startup.sh
ports:
- "2329:22"
pycon-nginx:
restart: always
build:
context: .
dockerfile: Dockerfile.nginx
image: pycon-nginx
container_name: pycon-nginx
volumes:
- .:/app
links:
- web
- db
- redis
- pycon-gulp
depends_on:
- web
- db
- redis
- pycon-gulp
ports:
- "80:80"
- "443:443"
pycon-gulp:
build:
context: .
dockerfile: Dockerfile.gulp
command: gulp
environment:
- NODE_ENV=development
volumes:
- .:/app
- node_modules:/app/node_modules
depends_on:
- web
volumes:
pgdata:
node_modules: