Skip to content

Commit badad98

Browse files
committed
updated for new versions of docker
1 parent d3d7afc commit badad98

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
Featuring:
44

5-
- Docker v1.9.1
6-
- Docker Compose v1.5.2
7-
- Docker Machine v0.5.4
5+
- Docker v1.10.3
6+
- Docker Compose v1.6.2
7+
- Docker Machine v0.6.0
88
- Python 3.5
99

1010
Blog post -> https://realpython.com/blog/python/django-development-with-docker-compose-and-machine/

docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ web:
77
- postgres:postgres
88
- redis:redis
99
volumes:
10-
- ./web:/usr/src/app
11-
- ./web/static:/usr/src/app/static
10+
- /usr/src/app
11+
- /usr/src/app/static
1212
env_file: .env
13-
command: /usr/local/bin/gunicorn docker_django.wsgi:application -w 2 -b :8000 --reload
13+
command: /usr/local/bin/gunicorn docker_django.wsgi:application -w 2 -b :8000
1414

1515
nginx:
1616
restart: always

0 commit comments

Comments
 (0)