We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3d7afc commit badad98Copy full SHA for badad98
README.md
@@ -2,9 +2,9 @@
2
3
Featuring:
4
5
-- Docker v1.9.1
6
-- Docker Compose v1.5.2
7
-- Docker Machine v0.5.4
+- Docker v1.10.3
+- Docker Compose v1.6.2
+- Docker Machine v0.6.0
8
- Python 3.5
9
10
Blog post -> https://realpython.com/blog/python/django-development-with-docker-compose-and-machine/
docker-compose.yml
@@ -7,10 +7,10 @@ web:
- postgres:postgres
- redis:redis
volumes:
- - ./web:/usr/src/app
11
- - ./web/static:/usr/src/app/static
+ - /usr/src/app
+ - /usr/src/app/static
12
env_file: .env
13
- command: /usr/local/bin/gunicorn docker_django.wsgi:application -w 2 -b :8000 --reload
+ command: /usr/local/bin/gunicorn docker_django.wsgi:application -w 2 -b :8000
14
15
nginx:
16
restart: always
0 commit comments