Skip to content

Commit 3f4bb95

Browse files
Add .gitignore & Update docker-compose file
1 parent 1699f4e commit 3f4bb95

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+14888
-41
lines changed

docker-compose.yml

+35-39
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,38 @@
1-
web:
2-
restart: always
3-
build: ./web
4-
expose:
5-
- "8000"
6-
links:
7-
- postgres:postgres
8-
- redis:redis
9-
volumes:
10-
- /usr/src/webapp
11-
- /usr/src/webapp/static
12-
env_file: .env
13-
command: /usr/local/bin/gunicorn docker_django.wsgi:application -w 2 -b :8000
1+
version: '2'
142

15-
postgres:
16-
restart: always
17-
image: postgres:9.5
18-
ports:
19-
- "5432:5432"
20-
env_file: .env
21-
volumes:
22-
- pgdata:/var/lib/postgresql/data/
3+
services:
4+
web:
5+
restart: always
6+
build: ./web
7+
expose:
8+
- "8000"
9+
links:
10+
- postgres:postgres
11+
- redis:redis
12+
env_file: .env
13+
command: /usr/local/bin/gunicorn docker_django.wsgi:application -w 2 -b :8000
2314

24-
nginx:
25-
restart: always
26-
build: ./nginx/
27-
ports:
28-
- "80:80"
29-
volumes:
30-
- /www/static
31-
volumes_from:
32-
- web
33-
links:
34-
- web:web
15+
postgres:
16+
restart: always
17+
image: postgres:9.5
18+
ports:
19+
- "5432:5432"
20+
env_file: .env
3521

36-
redis:
37-
restart: always
38-
image: redis:latest
39-
ports:
40-
- "6379:6379"
41-
volumes:
42-
- redisdata:/data
22+
nginx:
23+
restart: always
24+
build: ./nginx/
25+
ports:
26+
- "80:80"
27+
volumes:
28+
- /www/static
29+
volumes_from:
30+
- web
31+
links:
32+
- web:web
33+
34+
redis:
35+
restart: always
36+
image: redis:latest
37+
ports:
38+
- "6379:6379"

web/entrypoint.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/bash
22
python manage.py migrate # Apply database migrations
33
python manage.py collectstatic --noinput # Collect static files
4-
python manage.py runserver 0.0.0.0:8000
4+
python manage.py runserver 0.0.0.0:8000

web/webapp/db.sqlite3

-38 KB
Binary file not shown.

web/webapp/docker_django/__init__.pyc

-117 Bytes
Binary file not shown.
-122 Bytes
Binary file not shown.
8 Bytes
Binary file not shown.

web/webapp/docker_django/settings.py

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525

2626
# SECURITY WARNING: don't run with debug turned on in production!
2727
# DEBUG = True if os.getenv('DEBUG') == 'true' else False
28-
2928
DEBUG = True
3029

3130
ALLOWED_HOSTS = ['*']

web/webapp/docker_django/settings.pyc

-3.01 KB
Binary file not shown.

web/webapp/docker_django/urls.pyc

-390 Bytes
Binary file not shown.

web/webapp/docker_django/wsgi.pyc

-586 Bytes
Binary file not shown.

web/webapp/manage.py

100644100755
File mode changed.

0 commit comments

Comments
 (0)