-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.yml
62 lines (58 loc) · 1.22 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
# Docker compose for Local Development
version: "3.3"
services:
django:
restart: always
build:
context: ./django
dockerfile: Dockerfile
container_name: dev-django
command: gunicorn photoshare.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:
- 8001:8000
env_file:
- ./.env.dev
volumes:
- static:/srv/app/static
- media:/srv/app/media
depends_on:
- db
- redis
db:
restart: always
image: postgres:9.6.22-buster
container_name: dev-db
restart: always
ports:
- "5432:5432"
env_file:
- ./.env.dev
volumes:
- postgres_data:/var/lib/postgresql/data
redis:
image: redis:alpine
container_name: dev-redis
ports:
- 6379:6379
volumes:
- redis_cache:/data
nginx:
build:
context: ./nginx/dev
dockerfile: Dockerfile
container_name: dev-nginx
ports:
- 8080:80
volumes:
- static:/srv/app/static
- media:/srv/app/media
depends_on:
- django
- db
volumes:
postgres_data:
redis_cache:
media:
static: