More docker stuff

This commit is contained in:
Zakary Timson 2018-01-06 13:42:59 -05:00
parent 468112b33a
commit 7a96b7dc89
2 changed files with 20 additions and 6 deletions

View File

@ -1,11 +1,20 @@
FROM python:3
EXPOSE 8000
ADD . /
# Add files
RUN mkdir /site
WORKDIR /site
ADD . /site/
# Set up configs
RUN rm OACPL/settings.py
RUN mv OACPL/settings.base.py OACPL/settings.py
# Install packages
RUN pip install -r requirements.txt
# Initialize Django
RUN python3 manage.py makemigrations --no-input
RUN python3 manage.py migrate --no-input
RUN python3 manage.py collectstatic --no-input
EXPOSE 8000

View File

@ -1,11 +1,16 @@
version: 1
version: '3'
services:
db:
image: sqlite3
image: postgres
web:
command: python3 manage.py runserver
image: django
build: .
command: python3 manage.py runserver 0.0.0.0:8000
volumes:
- .:/code
ports:
- "8000:8000"
depends_on:
- db