Dockerize app

This commit is contained in:
Mouse Reeve
2020-03-22 11:21:19 -07:00
parent eac8f2a2f9
commit 6aad1c9250
4 changed files with 46 additions and 25 deletions

19
docker-compose.yml Normal file
View File

@ -0,0 +1,19 @@
version: '3'
services:
db:
image: postgres
env_file: .env
volumes:
- pgdata:/var/lib/posgresql/data
web:
build: .
command: python manage.py runserver 0.0.0.0:8000
volumes:
- .:/code
ports:
- "8000:8000"
depends_on:
- db
volumes:
pgdata: