-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathdocker-compose.yml
87 lines (75 loc) · 1.72 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
version: '3'
services:
db:
image: postgres
# image: sqlite3
web:
build: .
command: bash -c “python manage.py makemigrations && python manage.py migrate && python manage.py runserver localhost:8000”
container_name: ecommerce-docker
volumes:
- .:/ecommerce-docker
ports:
- "8000:8000"
depends_on:
- db
# — — — — docker-compose.yml
# version: ‘3’
# services:
# web:
# build: .
# command: bash -c “python manage.py makemigrations && python manage.py migrate && python manage.py runserver 0.0.0.0:8000”
# container_name: <decommerce-container>
# volumes:
# — .:/<dir-in-container>
# ports:
# — “8000:8000”
# — — — — requirements.txt
# Django==2.1.5
# gunicorn==19.9.0
# version: '3'
# services:
# web:
# restart: always
# build: .
# command: python manage.py runserver 0.0.0.0:8000
# expose:
# - "8000"
# links:
# - postgres:postgres
# - redis:redis
# volumes:
# - web-django:/Users/admin/Desktop/API_ENV/ecommerce
# # - web-static:/usr/src/app/static
# env_file: .env
# environment:
# DEBUG: 'true'
# command: /usr/local/bin/gunicorn ecommerce.wsgi:application -w 2 -b :8000
# nginx:
# restart: always
# build: ./nginx/
# ports:
# - "80:80"
# volumes:
# - web-static:/www/static
# links:
# - web:web
# postgres:
# restart: always
# image: postgres:latest
# ports:
# - "5432:5432"
# volumes:
# - pgdata:/var/lib/postgresql/data/
redis:
restart: always
image: redis:latest
ports:
- "6379:6379"
volumes:
- redisdata:/data
volumes:
web-django:
web-static:
pgdata:
redisdata: