Skip to content

Commit 34f8d6b

Browse files
authored
Merge pull request #4 from TwoPointerr/TM-main-update
azure changes 2
2 parents 9e84a8d + 2ffe55e commit 34f8d6b

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

docker-compose.yml

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,26 @@
11
version: '2.15.1'
22

33
services:
4-
django_gunicorn:
4+
grievance_gunicorn:
5+
image: mandharet/project-clean-django:latest
56
volumes:
67
- static:/code/static
78
env_file:
89
- .env
9-
build:
10-
context: .
10+
# build:
11+
# context: .
1112
ports:
1213
- "8000:8000"
1314

1415
nginx:
15-
build: ./nginx
16+
# build: ./nginx
17+
image: mandharet/project-clean:latest
1618
volumes:
1719
- static:/code/static
1820
ports:
1921
- "80:80"
2022
depends_on:
21-
- django_gunicorn
23+
- grievance_gunicorn
2224

2325
volumes:
2426
static:

nginx/default.conf

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
upstream django{
2-
server django_gunicorn:8000;
1+
upstream grievance{
2+
server grievance_gunicorn:8000;
33
}
44

55
server{
66
listen 80;
77

88
location / {
9-
proxy_pass http://django;
9+
proxy_pass http://grievance;
1010
}
1111

1212
location /static/ {

0 commit comments

Comments
 (0)