File tree 2 files changed +10
-8
lines changed
2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 1
1
version : ' 2.15.1'
2
2
3
3
services :
4
- django_gunicorn :
4
+ grievance_gunicorn :
5
+ image : mandharet/project-clean-django:latest
5
6
volumes :
6
7
- static:/code/static
7
8
env_file :
8
9
- .env
9
- build :
10
- context : .
10
+ # build:
11
+ # context: .
11
12
ports :
12
13
- " 8000:8000"
13
14
14
15
nginx :
15
- build : ./nginx
16
+ # build: ./nginx
17
+ image : mandharet/project-clean:latest
16
18
volumes :
17
19
- static:/code/static
18
20
ports :
19
21
- " 80:80"
20
22
depends_on :
21
- - django_gunicorn
23
+ - grievance_gunicorn
22
24
23
25
volumes :
24
26
static:
Original file line number Diff line number Diff line change 1
- upstream django {
2
- server django_gunicorn :8000;
1
+ upstream grievance {
2
+ server grievance_gunicorn :8000;
3
3
}
4
4
5
5
server{
6
6
listen 80;
7
7
8
8
location / {
9
- proxy_pass http://django ;
9
+ proxy_pass http://grievance ;
10
10
}
11
11
12
12
location /static/ {
You can’t perform that action at this time.
0 commit comments