-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
71 lines (67 loc) · 1.43 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
# Docker compose for Local Development
version: "3.3"
services:
django:
restart: always
build:
context: ./backend
dockerfile: Dockerfile
container_name: dev-django
command: gunicorn portfolio.wsgi:application --worker-tmp-dir /dev/shm --workers=2 --threads=4 --worker-class=gthread --log-file=- --bind 0.0.0.0:8000
environment:
- REDIS_URL=redis://redis:6379/
ports:
- "8000:8000"
env_file:
- ./backend/.env.dev
volumes:
- static:/srv/app/backend/static
- media:/srv/app/backend/media
depends_on:
- db
- redis
db:
restart: always
image: postgres:9.6.22-buster
container_name: dev-db
ports:
- "5432:5432"
env_file:
- ./backend/.env.dev
redis:
image: redis:alpine
container_name: dev-redis
ports:
- "6379:6379"
volumes:
- redis_cache:/data
react:
restart: always
build:
context: ./frontend
dockerfile: Dockerfile
container_name: dev-react
command: npm run start
env_file:
- ./frontend/.env.dev
ports:
- "3000:3000"
depends_on:
- django
nginx:
build:
context: ./nginx/dev
dockerfile: Dockerfile
container_name: dev-nginx
ports:
- "8080:80"
volumes:
- static:/srv/app/backend/static
- media:/srv/app/backend/media
depends_on:
- django
- db
volumes:
redis_cache:
media:
static: